Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ejimsan committed Nov 19, 2024
1 parent 701a560 commit bccf649
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ebl/tests/chronology/test_chronology.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ def test_chronology_schema_deserialization():
with open("ebl/chronology/brinkmanKings.json", "r", encoding="utf-8") as file:
data = json.load(file)
chronology = ChronologySchema().load({"kings": data})
assert len(chronology.kings) == 365
assert len(chronology.kings) == 400
assert chronology.kings[0].name == "Sargon"
assert chronology.kings[363].name == "Sin-šar-iškun"
assert chronology.kings[-2].name == "Sin-šar-iškun"
assert chronology.kings[50].order_global == 50
assert chronology.kings[363].order_global == 363

0 comments on commit bccf649

Please sign in to comment.