From: Neil Smith Date: Mon, 10 Mar 2014 20:34:26 +0000 (-0400) Subject: Added another test case X-Git-Url: https://git.njae.me.uk/?p=cipher-training.git;a=commitdiff_plain;h=91d1c4d452a85d7a303513b2a758d32ac502c92c Added another test case --- diff --git a/cipher.py b/cipher.py index 4ec333f..a09c343 100644 --- a/cipher.py +++ b/cipher.py @@ -170,6 +170,8 @@ def caesar_decipher(message, shift): 'abc' >>> caesar_decipher('cd ez ab', 2) 'ab cx yz' + >>> caesar_decipher('Jgnnq Yqtnf!', 2) + 'Hello World!' """ return caesar_encipher(message, -shift)