From 7fd0f34b97ce7a4a2f25ce2282b59a45191d1af7 Mon Sep 17 00:00:00 2001 From: "Leonhard S." Date: Mon, 4 Nov 2024 15:31:39 +0100 Subject: [PATCH] Update expected value for live test data RIP Cobalt --- tests/live/ps2_character_test.py | 2 +- tests/live/rest_client_test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/live/ps2_character_test.py b/tests/live/ps2_character_test.py index c56904a..a5e63a2 100644 --- a/tests/live/ps2_character_test.py +++ b/tests/live/ps2_character_test.py @@ -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) diff --git a/tests/live/rest_client_test.py b/tests/live/rest_client_test.py index 703f085..b77a252 100644 --- a/tests/live/rest_client_test.py +++ b/tests/live/rest_client_test.py @@ -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)