8000 Skipped passing passwordHashOrder when it is None. · pony-lab/firebase-admin-python@3d212a9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3d212a9

Browse files
committed
Skipped passing passwordHashOrder when it is None.
1 parent 3de3eb6 commit 3d212a9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/test_user_mgt.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -758,8 +758,7 @@ def test_hmac(self, func, name):
758758
hmac = func(key=b'key')
759759
expected = {
760760
'hashAlgorithm': name,
761-
'signerKey': _user_import.b64_encode(b'key'),
762-
'passwordHashOrder': None
761+
'signerKey': _user_import.b64_encode(b'key')
763762
}
764763
assert hmac.to_dict() == expected
765764

@@ -799,8 +798,7 @@ def test_basic(self, func, name):
799798
basic = func(rounds=10)
800799
expected = {
801800
'hashAlgorithm': name,
802-
'rounds': 10,
803-
'passwordHashOrder': None
801+
'rounds': 10
804802
}
805803
assert basic.to_dict() == expected
806804

0 commit comments

Comments
 (0)
0