Skip to content

Commit

Permalink
Update expected value for live test data
Browse files Browse the repository at this point in the history
RIP Cobalt
  • Loading branch information
leonhard-s committed Nov 4, 2024
1 parent 5efaa6d commit 7fd0f34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/live/ps2_character_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,4 +153,4 @@ async def test_world(self) -> None:
if world is None:
self.fail('Unable to get character world')
self.assertIsInstance(world, ps2.World)
self.assertEqual(world.id, 13)
self.assertEqual(world.id, 10)
2 changes: 1 addition & 1 deletion tests/live/rest_client_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ async def test_get_by_name(self) -> None:
if char is None:
self.fail('Character not found')
self.assertIsInstance(char, Character)
world = await self.client.get_by_name(World, 'Cobalt')
world = await self.client.get_by_name(World, 'Miller')
if world is None:
self.fail('World not found')
self.assertIsInstance(world, World)
Expand Down

0 comments on commit 7fd0f34

Please sign in to comment.