Skip to content

Commit e381f9d

Browse files
committed
Fixed tests
1 parent 8997869 commit e381f9d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

howlongtobeatpy/tests/test_async_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ async def test_game_hide_dlc_search(self):
7373

7474
@async_test
7575
async def test_game_include_dlc_search(self):
76-
results = await HowLongToBeat().async_search("Hearts of Stone", SearchModifiers.INCLUDE_DLC)
76+
results = await HowLongToBeat().async_search("Hearts of Stone")
7777
self.assertNotEqual(None, results, "Search Results are None")
7878
best_result = TestNormalRequest.getMaxSimilarityElement(results)
7979
self.assertEqual("The Witcher 3: Wild Hunt - Hearts of Stone", best_result.game_name)

howlongtobeatpy/tests/test_normal_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def test_game_hide_dlc_search(self):
8484
self.assertEqual(0, len(results))
8585

8686
def test_game_include_dlc_search(self):
87-
results = HowLongToBeat().search("Hearts of Stone", SearchModifiers.INCLUDE_DLC)
87+
results = HowLongToBeat().search("Hearts of Stone")
8888
self.assertNotEqual(None, results, "Search Results are None")
8989
best_result = TestNormalRequest.getMaxSimilarityElement(results)
9090
self.assertEqual("The Witcher 3: Wild Hunt - Hearts of Stone", best_result.game_name)

0 commit comments

Comments
 (0)