From 91d1c4d452a85d7a303513b2a758d32ac502c92c Mon Sep 17 00:00:00 2001 From: Neil Smith Date: Mon, 10 Mar 2014 16:34:26 -0400 Subject: [PATCH] Added another test case --- cipher.py | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.34.1