We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb1ba6c commit f0f35a4Copy full SHA for f0f35a4
examples/decryption_test.py
@@ -14,9 +14,9 @@ def test_rate_limited_printing(self):
14
self.update_text("#user-name", "standard_user")
15
16
encrypted_password = "$^*ENCRYPT=S3BDTAdCWzMmKEY8Gjg=?&#$"
17
- print("Encrypted Password = %s" % encrypted_password)
+ print("\nEncrypted Password = %s" % encrypted_password)
18
password = encryption.decrypt(encrypted_password)
19
- print("Password = %s" % password)
+ print("Decrypted Password = %s" % password)
20
self.update_text("#password", password)
21
22
self.click('input[type="submit"]')
0 commit comments