chore: ran linter and formatter
This commit is contained in:
@@ -226,13 +226,13 @@ class TestJsonTVShowRepository:
|
||||
[ShowStatus.ONGOING, ShowStatus.ENDED, ShowStatus.UNKNOWN]
|
||||
):
|
||||
show = TVShow(
|
||||
imdb_id=ImdbId(f"tt{i+1000000:07d}"),
|
||||
imdb_id=ImdbId(f"tt{i + 1000000:07d}"),
|
||||
title=f"Show {status.value}",
|
||||
seasons_count=1,
|
||||
status=status,
|
||||
)
|
||||
repo.save(show)
|
||||
loaded = repo.find_by_imdb_id(ImdbId(f"tt{i+1000000:07d}"))
|
||||
loaded = repo.find_by_imdb_id(ImdbId(f"tt{i + 1000000:07d}"))
|
||||
assert loaded.status == status
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user