[codespell] Fixing Spelling Mistakes
This is the first in a series of commits to add support for codespell. This is continuning the process completed in ironic-python-agent. Future Commits will add a Tox Target, CI support and potentially a git-blame-ignore-revs file if their are lots of spelling mistakes that could clutter git blame. Change-Id: If39cba190cd4cde60ce13ae2fcde77b69776d4d2
This commit is contained in:
parent
8fa7e1f9d8
commit
2f74128822
@ -6,5 +6,5 @@ security:
|
|||||||
<https://storyboard.openstack.org/#!/story/2010382>`_.
|
<https://storyboard.openstack.org/#!/story/2010382>`_.
|
||||||
fixes:
|
fixes:
|
||||||
- |
|
- |
|
||||||
Fixes an issue where secure fields were accidently lost in the Libvirt
|
Fixes an issue where secure fields were accidentally lost in the Libvirt
|
||||||
domain XML document.
|
domain XML document.
|
||||||
|
@ -78,7 +78,7 @@ class VirtualBMCTestCase(base.TestCase):
|
|||||||
self._assert_libvirt_calls(mock_libvirt_domain, mock_libvirt_open,
|
self._assert_libvirt_calls(mock_libvirt_domain, mock_libvirt_open,
|
||||||
readonly=True)
|
readonly=True)
|
||||||
|
|
||||||
# reset mocks for the next iteraction
|
# reset mocks for the next iteration
|
||||||
mock_libvirt_domain.reset_mock()
|
mock_libvirt_domain.reset_mock()
|
||||||
mock_libvirt_open.reset_mock()
|
mock_libvirt_open.reset_mock()
|
||||||
|
|
||||||
@ -95,7 +95,7 @@ class VirtualBMCTestCase(base.TestCase):
|
|||||||
self.assertEqual(1, str(conn.defineXML.call_args).count('<boot '))
|
self.assertEqual(1, str(conn.defineXML.call_args).count('<boot '))
|
||||||
self._assert_libvirt_calls(mock_libvirt_domain, mock_libvirt_open)
|
self._assert_libvirt_calls(mock_libvirt_domain, mock_libvirt_open)
|
||||||
|
|
||||||
# reset mocks for the next iteraction
|
# reset mocks for the next iteration
|
||||||
mock_libvirt_domain.reset_mock()
|
mock_libvirt_domain.reset_mock()
|
||||||
mock_libvirt_open.reset_mock()
|
mock_libvirt_open.reset_mock()
|
||||||
|
|
||||||
|
@ -208,7 +208,7 @@ class VirtualBMC(bmc.Bmc):
|
|||||||
if domain.isActive():
|
if domain.isActive():
|
||||||
domain.reset()
|
domain.reset()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
LOG.error('Error reseting the domain %(domain)s. '
|
LOG.error('Error resetting the domain %(domain)s. '
|
||||||
'Error: %(error)s', {'domain': self.domain_name,
|
'Error: %(error)s', {'domain': self.domain_name,
|
||||||
'error': e})
|
'error': e})
|
||||||
# Command not supported in present state
|
# Command not supported in present state
|
||||||
|
Loading…
Reference in New Issue
Block a user