Browse Source

Fix failing tests

Order matters ...
oz123 10 năm trước cách đây
mục cha
commit
f556b3dc82
1 tập tin đã thay đổi với 3 bổ sung4 xóa
  1. 3 4
      pwman/tests/test_crypto_engine.py

+ 3 - 4
pwman/tests/test_crypto_engine.py

@@ -22,12 +22,11 @@ give_key = lambda msg: "verysecretkey"
 
 class CryptoEngineTest(unittest.TestCase):
 
-
-    def test_write_password(self):
+    def test_a_write_password(self):
         write_password(reader=give_key)
 
-    def test_save_secret(self):
+    def test_b_save_secret(self):
         save_a_secret_message(reader=give_key)
 
-    def test_read_secret(self):
+    def test_c_read_secret(self):
         read_a_secret_message(reader=give_key)