chore: upgrade to Python 3.13 & run update
This commit is contained in:
parent
2814be8975
commit
2ce8924d1b
10 changed files with 731 additions and 518 deletions
|
|
@ -134,7 +134,7 @@ async def test_load_ratings_page_20240510(monkeypatch):
|
|||
if rating.movie.imdb_id == item["imdb_id"]:
|
||||
rating_dict = {key: getattr(rating.movie, key) for key in item.keys()}
|
||||
return rating_dict
|
||||
raise AssertionError(f"{item["imdb_id"]} not found in page.ratings")
|
||||
raise AssertionError(f"{item['imdb_id']} not found in page.ratings")
|
||||
|
||||
a_movie = {
|
||||
"title": "Kung Fu Panda 4",
|
||||
|
|
@ -224,7 +224,7 @@ async def test_load_ratings_page_20240720(monkeypatch):
|
|||
if rating.movie.imdb_id == item["imdb_id"]:
|
||||
rating_dict = {key: getattr(rating.movie, key) for key in item.keys()}
|
||||
return rating_dict
|
||||
raise AssertionError(f"{item["imdb_id"]} not found in page.ratings")
|
||||
raise AssertionError(f"{item['imdb_id']} not found in page.ratings")
|
||||
|
||||
a_movie = {
|
||||
"title": "Kung Fu Panda 4",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue