Tests: remove a breakpoint condition that was left ;P

This commit is contained in:
Fabian Dill 2021-10-06 11:41:57 +02:00
parent 1217179f8a
commit f5afc84cd2
1 changed files with 0 additions and 2 deletions

View File

@ -27,6 +27,4 @@ class TestBase(unittest.TestCase):
state = world.get_all_state(False)
for location in world.get_locations():
with self.subTest("Location should be reached", location=location):
if not location.can_reach(state):
print("Bla!")
self.assertTrue(location.can_reach(state))