File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
exercises/rotational-cipher Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ def test_rotate_n_by_13_with_wrap_around_alphabet(self):
20
20
self .assertEqual (rotational_cipher .rotate ('n' , 13 ), 'a' )
21
21
22
22
def test_rotate_capital_letters (self ):
23
- self .assertEqual (rotational_cipher .rotate ('OMG' , 5 ),'TRL' )
23
+ self .assertEqual (rotational_cipher .rotate ('OMG' , 5 ), 'TRL' )
24
24
25
25
def test_rotate_spaces (self ):
26
26
self .assertEqual (rotational_cipher .rotate ('O M G' , 5 ),
@@ -43,7 +43,7 @@ def test_rotate_punctuation(self):
43
43
def test_rotate_all_letters (self ):
44
44
self .assertEqual (
45
45
rotational_cipher .rotate (
46
- "The quick brown fox jumps" \
46
+ "The quick brown fox jumps"
47
47
" over the lazy dog." ,
48
48
13 ),
49
49
"Gur dhvpx oebja sbk whzcf bire gur ynml qbt." )
You can’t perform that action at this time.
0 commit comments