We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ca04738 + 89a8f72 commit 2957f28Copy full SHA for 2957f28
2 files changed
openstackclient/network/v2/local_ip_association.py
@@ -124,7 +124,7 @@ def take_action(self, parsed_args):
124
"fixed port "
125
"name or ID '%(fixed_port_id)s': %(e)s"
126
),
127
- {'fixed port ID': fixed_port_id, 'e': e},
+ {'fixed_port_id': fixed_port_id, 'e': e},
128
)
129
130
if result > 0:
openstackclient/tests/unit/utils.py
@@ -52,6 +52,8 @@ def setUp(self):
52
stderr = self.useFixture(fixtures.StringStream("stderr")).stream
53
self.useFixture(fixtures.MonkeyPatch("sys.stderr", stderr))
54
55
+ self.log = self.useFixture(fixtures.LoggerFixture())
56
+
57
def assertNotCalled(self, m, msg=None):
58
"""Assert a function was not called"""
59
0 commit comments