Skip to content

Commit

Permalink
Updated tests to reflect fix to cipher.
Browse files Browse the repository at this point in the history
  • Loading branch information
tfdahlin committed Nov 9, 2020
1 parent 2f3a670 commit 2ac46dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cipher.py
Expand Up @@ -26,5 +26,5 @@ def test_reverse():


def test_splice():
assert cipher.splice([1, 2, 3, 4], 2) == [1, 2]
assert cipher.splice([1, 2, 3, 4], 1) == [1]
assert cipher.splice([1, 2, 3, 4], 2) == [3, 4]
assert cipher.splice([1, 2, 3, 4], 1) == [2, 3, 4]

0 comments on commit 2ac46dc

Please sign in to comment.