Skip to content

Commit f0f35a4

Browse files
committed
Update a test
1 parent cb1ba6c commit f0f35a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/decryption_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ def test_rate_limited_printing(self):
1414
self.update_text("#user-name", "standard_user")
1515

1616
encrypted_password = "$^*ENCRYPT=S3BDTAdCWzMmKEY8Gjg=?&#$"
17-
print("Encrypted Password = %s" % encrypted_password)
17+
print("\nEncrypted Password = %s" % encrypted_password)
1818
password = encryption.decrypt(encrypted_password)
19-
print("Password = %s" % password)
19+
print("Decrypted Password = %s" % password)
2020
self.update_text("#password", password)
2121

2222
self.click('input[type="submit"]')

0 commit comments

Comments
 (0)