Skip to content

Commit

Permalink
fixed another test bug
Browse files Browse the repository at this point in the history
  • Loading branch information
euxhenh committed Mar 15, 2022
1 parent aa1240c commit 0a2b319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def test1(self):
n_elements_rem = gci.n_elements_remaining_
self.assertListEqual(n_elements_rem, [2, 1, 0])
coverage_until = gci.coverage_until_
self.assertListEqual(coverage_until, [1, 1, 2])
self.assertListEqual(coverage_until, [0, 1, 2])

solution = gci.cover(3)
self.assertListEqual(solution, [3, 4, 1])
Expand Down

0 comments on commit 0a2b319

Please sign in to comment.