diff options
Diffstat (limited to 'test/test_aes.py')
-rw-r--r-- | test/test_aes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_aes.py b/test/test_aes.py index 315a3f5ae..54078a66d 100644 --- a/test/test_aes.py +++ b/test/test_aes.py @@ -51,5 +51,6 @@ class TestAES(unittest.TestCase): decrypted = (aes_decrypt_text(encrypted, password, 32)) self.assertEqual(decrypted, self.secret_msg) + if __name__ == '__main__': unittest.main() |