From 5da42beff6ff83c55663cb2e996bb8a3fa9883f3 Mon Sep 17 00:00:00 2001 From: Derek Ledoux <31769272+doublederek@users.noreply.github.com> Date: Wed, 8 May 2024 12:13:53 -0400 Subject: [PATCH] Update solution.test.py --- python/solution.test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/solution.test.py b/python/solution.test.py index 1da56ff..92638e4 100644 --- a/python/solution.test.py +++ b/python/solution.test.py @@ -8,8 +8,8 @@ def test_decryption_output(self): result = subprocess.run(['python3', 'solution.py'], text=True, capture_output=True) # Check the output - expected_output = os.getenv('TEST_ANSWER') + expected_output = 'HIPPOPOTOMONSTROSESQUIPPEDALIOPHOBIA' self.assertEqual(result.stdout.strip(), expected_output) if __name__ == '__main__': - unittest.main() \ No newline at end of file + unittest.main()