Skip to content

Commit

Permalink
add check
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Dec 6, 2023
1 parent 21f9b87 commit 2561eac
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions unittests/ranged/single_list_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ def test_plus_minus():
a_list = RangedList(5, 12, "twelve")
b_list = a_list + 2
c_list = b_list - 2
assert a_list == c_list
d_list = RangedList(5, 8, "eight")
e_list = a_list + d_list
f_list = e_list - d_list
Expand All @@ -113,6 +114,7 @@ def test_multi_divide():
a_list = RangedList(5, 12, "twelve")
b_list = a_list * 2
c_list = b_list / 2
assert a_list == c_list
d_list = RangedList(5, 4, "four")
e_list = a_list / d_list
f_list = e_list * d_list
Expand Down

0 comments on commit 2561eac

Please sign in to comment.