Skip to content

Commit b90f3e5

Browse files
committed
test: fix failing test setup for change in PBKDF2 rounds.
1 parent c92aad5 commit b90f3e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_cgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ def testPasswordConfigOption(self):
623623
self.db.commit()
624624
actions.LoginAction(cl).handle()
625625
pw = self.db.user.get(chef, 'password')
626-
self.assertEqual('PBKDF2', pw.scheme)
626+
self.assertEqual('PBKDF2S5', pw.scheme)
627627
self.assertEqual(1000, password.pbkdf2_unpack(pw.password)[0])
628628
cl.db.close()
629629

0 commit comments

Comments
 (0)