Skip to content

Commit

Permalink
Update solution.test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
doublederek authored May 8, 2024
1 parent e722b28 commit 5da42be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/solution.test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
unittest.main()

0 comments on commit 5da42be

Please sign in to comment.