Skip to content

Commit 32b15fb

Browse files
committed
was adding wrong expected output all along what the fuck
1 parent 624be84 commit 32b15fb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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) == 'BTMQI'
8+
assert encrypt('WORLD', 5) == 'BTWQI'
99

1010
def test_decrypt():
1111
assert decrypt('KHOOR', 3) == 'HELLO'
12-
assert decrypt('BTMQI', 5) == 'WORLD'
12+
assert decrypt('BTWQI', 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)