diff options
Diffstat (limited to 'src/miinaharava/tests/test_bot.py')
-rw-r--r-- | src/miinaharava/tests/test_bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/miinaharava/tests/test_bot.py b/src/miinaharava/tests/test_bot.py index 4dab148..435151f 100644 --- a/src/miinaharava/tests/test_bot.py +++ b/src/miinaharava/tests/test_bot.py @@ -26,7 +26,7 @@ class TestBotClass(unittest.TestCase): tested = set() while True: - action, x, y = bot.hint(brd.get_view(), 0, 0) + action, x, y = bot.hint(brd.get_view()) if (x,y) in tested: break tested.add((x,y)) |