Skip to content

Commit 700f6bb

Browse files
committed
fix test_get_trajectory_bounds test to match new logic in _get_trajectory_bounds
1 parent 35912a3 commit 700f6bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_CodeEntropy/test_entropy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ def test_get_trajectory_bounds(self):
222222
self.assertIsInstance(entropy_manager._args.end, int)
223223
self.assertIsInstance(entropy_manager._args.step, int)
224224

225-
self.assertEqual(entropy_manager._get_trajectory_bounds(), (0, -1, 1))
225+
self.assertEqual(entropy_manager._get_trajectory_bounds(), (0, 0, 1))
226226

227227
@patch(
228228
"argparse.ArgumentParser.parse_args",

0 commit comments

Comments
 (0)