Skip to content

Commit

Permalink
update test to use email_esttings plaintext_password
Browse files Browse the repository at this point in the history
  • Loading branch information
Jtang-1 committed Dec 9, 2024
1 parent 0a94aa1 commit b260ec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion corehq/motech/tests/test_reencryption_migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ def test_empty_password_reencrypt_ecb_to_cbc_mode_match_plaintext(self):
self.email_settings.password = plaintext_password
reencrypted_password = reencrypt_ecb_to_cbc_mode(self.email_settings.password, f'${ALGO_AES}$')
self.email_settings.password = reencrypted_password
self.assertEqual(plaintext_password, reencrypted_password)
self.assertEqual(plaintext_password, self.email_settings.plaintext_password)

0 comments on commit b260ec9

Please sign in to comment.