Skip to content

Commit

Permalink
chore: Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
calvin-codecov committed Jan 16, 2025
1 parent c913003 commit dbaad07
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions utils/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ def app(self) -> str:
migrate_to = None

def setUp(self) -> None:
assert self.migrate_from and self.migrate_to, (
"TestCase '{}' must define migrate_from and migrate_to properties".format(
type(self).__name__
)
assert (
self.migrate_from and self.migrate_to
), "TestCase '{}' must define migrate_from and migrate_to properties".format(
type(self).__name__
)
self.migrate_from = [(self.app, self.migrate_from)]
self.migrate_to = [(self.app, self.migrate_to)]
Expand Down

0 comments on commit dbaad07

Please sign in to comment.