Skip to content

Commit

Permalink
test: fix failing test setup for change in PBKDF2 rounds.
Browse files Browse the repository at this point in the history
  • Loading branch information
rouilj committed Dec 31, 2024
1 parent c92aad5 commit b90f3e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_cgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ def testPasswordConfigOption(self):
self.db.commit()
actions.LoginAction(cl).handle()
pw = self.db.user.get(chef, 'password')
self.assertEqual('PBKDF2', pw.scheme)
self.assertEqual('PBKDF2S5', pw.scheme)
self.assertEqual(1000, password.pbkdf2_unpack(pw.password)[0])
cl.db.close()

Expand Down

0 comments on commit b90f3e5

Please sign in to comment.