From 0a94aa1c056876043b8f492e822b7f7404d4ee2a Mon Sep 17 00:00:00 2001 From: Jonathan Tang Date: Mon, 9 Dec 2024 10:44:06 -0800 Subject: [PATCH] correct function name typo --- corehq/motech/tests/test_reencryption_migration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/corehq/motech/tests/test_reencryption_migration.py b/corehq/motech/tests/test_reencryption_migration.py index 731a703dc74f..5218b6627ad5 100644 --- a/corehq/motech/tests/test_reencryption_migration.py +++ b/corehq/motech/tests/test_reencryption_migration.py @@ -40,7 +40,7 @@ def test_reencrypt_ecb_to_cbc_mode_match_plaintext_without_prefix(self): self.assertEqual(plaintext_password, self.email_settings.plaintext_password) - def test_empty_password_reencrypt_cbc_to_ecb_mode_match_plaintext(self): + def test_empty_password_reencrypt_ecb_to_cbc_mode_match_plaintext(self): plaintext_password = '' self.email_settings.password = plaintext_password reencrypted_password = reencrypt_ecb_to_cbc_mode(self.email_settings.password, f'${ALGO_AES}$')