From f5afc84cd23d4dda875e2bd9fa8a8c5ffdbafcc4 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Wed, 6 Oct 2021 11:41:57 +0200 Subject: [PATCH] Tests: remove a breakpoint condition that was left ;P --- test/Reachability.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/Reachability.py b/test/Reachability.py index 3122682262..73310ab7b4 100644 --- a/test/Reachability.py +++ b/test/Reachability.py @@ -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))