Skip to content

Commit d394bac

Browse files
Zuulopenstack-gerrit
authored andcommitted
Merge "Resolve PEP8"
2 parents ae67317 + 52ff421 commit d394bac

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

openstackclient/tests/functional/identity/v3/test_project.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ def test_project_set(self):
7979
'--disable '
8080
'--property k0=v0 '
8181
'%(name)s' % {'new_name': new_project_name,
82-
'domain': self.domain_name,
8382
'name': project_name})
8483
self.assertEqual(0, len(raw_output))
8584
# check project details

openstackclient/tests/unit/network/v2/fakes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1833,7 +1833,7 @@ def create_one_port_forwarding(attrs=None):
18331833
"""
18341834
attrs = attrs or {}
18351835
floatingip_id = (
1836-
attrs.get('floatingip_id') or'floating-ip-id-' + uuid.uuid4().hex
1836+
attrs.get('floatingip_id') or 'floating-ip-id-' + uuid.uuid4().hex
18371837
)
18381838
# Set default attributes.
18391839
port_forwarding_attrs = {

0 commit comments

Comments
 (0)