# HG changeset patch # User Brian Neal # Date 1338255811 18000 # Node ID dbc0c73735d669783dc5c1c2405a1464cfde8fee # Parent 9e499e386facd7c2dcbef43dbb99f99d6f2ea51f Slight tweak to test code. diff -r 9e499e386fac -r dbc0c73735d6 enigma/tests/test_enigma.py --- a/enigma/tests/test_enigma.py Mon May 28 19:36:08 2012 -0500 +++ b/enigma/tests/test_enigma.py Mon May 28 20:43:31 2012 -0500 @@ -168,8 +168,7 @@ # groups of the message -- it appears the last partial group 'VA' should # be removed also) - ciphertext = ciphertext[8:] - ciphertext = ciphertext[:-10] + ciphertext = ciphertext[8:-10] machine.set_display('VJNA') plaintext = machine.process_text(ciphertext)