trivial: Remove unnecessary trailing comma

Change-Id: Idab313f503c15d2aeec2f82db624e52ddea9e4bf
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
This commit is contained in:
Stephen Finucane 2024-08-29 11:32:48 +01:00
parent da0667e201
commit f83b657fc3
2 changed files with 2 additions and 2 deletions

View File

@ -709,7 +709,7 @@ class TestCreateServer(base.TestCase):
dict(id='image-id'),
dict(id='flavor-id'),
wait=True,
),
)
# This is a pretty dirty hack to ensure we in principle use object with
# expected properties

View File

@ -65,7 +65,7 @@ class TestPool(base.TestCase):
def test_make_it(self):
test_pool = pool.Pool(**EXAMPLE)
self.assertEqual(EXAMPLE['name'], test_pool.name),
self.assertEqual(EXAMPLE['name'], test_pool.name)
self.assertEqual(EXAMPLE['description'], test_pool.description)
self.assertEqual(
EXAMPLE['admin_state_up'], test_pool.is_admin_state_up