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()