Skip to content

Commit 8417608

Browse files
committed
rotational_cipher: Cleaned formatting to meet standards
1 parent 8d2c1fb commit 8417608

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/rotational-cipher/rotational_cipher_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def test_rotate_n_by_13_with_wrap_around_alphabet(self):
2020
self.assertEqual(rotational_cipher.rotate('n', 13), 'a')
2121

2222
def test_rotate_capital_letters(self):
23-
self.assertEqual(rotational_cipher.rotate('OMG', 5),'TRL')
23+
self.assertEqual(rotational_cipher.rotate('OMG', 5), 'TRL')
2424

2525
def test_rotate_spaces(self):
2626
self.assertEqual(rotational_cipher.rotate('O M G', 5),
@@ -43,7 +43,7 @@ def test_rotate_punctuation(self):
4343
def test_rotate_all_letters(self):
4444
self.assertEqual(
4545
rotational_cipher.rotate(
46-
"The quick brown fox jumps"\
46+
"The quick brown fox jumps"
4747
" over the lazy dog.",
4848
13),
4949
"Gur dhvpx oebja sbk whzcf bire gur ynml qbt.")

0 commit comments

Comments
 (0)