Skip to content

Commit

Permalink
style: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
larkee committed Jan 25, 2021
1 parent 1826360 commit e007c5d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/system/test_system.py
Expand Up @@ -383,9 +383,7 @@ def test_create_database_pitr_success(self):
# We want to make sure the operation completes.
operation.result(30) # raises on failure / timeout.

database_ids = [
database.name for database in Config.INSTANCE.list_databases()
]
database_ids = [database.name for database in Config.INSTANCE.list_databases()]
self.assertIn(temp_db.name, database_ids)

temp_db.reload()
Expand Down

0 comments on commit e007c5d

Please sign in to comment.