@@ -215,7 +215,7 @@ def test_world_tibiadata_unrelated_section(self):
215215
216216 # region TibiaData WorldOverview Tests
217217
218- def test_world_overview_from_content (self ):
218+ def test_world_overview_from_content_tibiadata (self ):
219219 """Testing parsing the world overview from TibiaData"""
220220 content = self ._load_resource (FILE_WORLD_LIST_TIBIADATA )
221221 world_overview = WorldOverview .from_tibiadata (content )
@@ -230,7 +230,7 @@ def test_world_overview_from_content(self):
230230 self .assertIsInstance (world_overview .worlds [0 ].location , WorldLocation )
231231 self .assertIsInstance (world_overview .worlds [0 ].online_count , int )
232232
233- def test_world_overview_from_content_offline (self ):
233+ def test_listed_world_list_from_tibiadata_offline (self ):
234234 """Testing parsing the world overview with offline worlds"""
235235 content = self ._load_resource (FILE_WORLD_LIST_TIBIADATA_OFFLINE )
236236 worlds = ListedWorld .list_from_tibiadata (content )
@@ -243,13 +243,13 @@ def test_world_overview_from_content_offline(self):
243243 self .assertIsInstance (worlds [0 ].location , WorldLocation )
244244 self .assertIsInstance (worlds [0 ].online_count , int )
245245
246- def test_world_overview_from_content_unrelated (self ):
246+ def test_listed_world_list_from_tibiadata_unrelated (self ):
247247 """Testing parsing an unrelated json"""
248248 content = self ._load_resource (FILE_WORLD_TIBIADATA )
249249 with self .assertRaises (InvalidContent ):
250250 ListedWorld .list_from_tibiadata (content )
251251
252- def test_world_overview_from_content_invalid_json (self ):
252+ def test_listed_world_list_from_tibiadata_invalid_json (self ):
253253 """Testing parsing an invalid json"""
254254 with self .assertRaises (InvalidContent ):
255255 ListedWorld .list_from_tibiadata ("<html><b>Not a json string</b></html>" )
0 commit comments