Skip to content

Commit 624be84

Browse files
committed
what in the actual fuck
1 parent 992444d commit 624be84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testcases.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
def test_encrypt():
77
assert encrypt('HELLO', 3) == 'KHOOR'
8-
assert encrypt('WORLD', 5) == 'BTMJI'
8+
assert encrypt('WORLD', 5) == 'BTMQI'
99

1010
def test_decrypt():
1111
assert decrypt('KHOOR', 3) == 'HELLO'
12-
assert decrypt('BTMJI', 5) == 'WORLD'
12+
assert decrypt('BTMQI', 5) == 'WORLD'
1313

1414
def test_encrypt_with_input_mock():
1515
with patch('builtins.input', side_effect=['e', 'HELLO', '3']):

0 commit comments

Comments
 (0)