Skip to content

Commit

Permalink
Fix passwords that validate test
Browse files Browse the repository at this point in the history
to reflect the new ones due to algorithm changes.
  • Loading branch information
alanhkarp committed Jul 22, 2024
1 parent d574557 commit c95baa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export async function runTests() {
async function testCalculation() {
await resetState();
if (loggingCalculation) console.log("testCalculation state reset", $pwlength.value);
const expected = "UG1qIyn6mSuJ";
const expected = "c3EEm4qRFSfk";
await fillForm("qwerty", "alantheguru.alanhkarp.com", "Guru", "alan");
if (loggingCalculation) console.log("testCalculation form filled", $sitename.value, $username.value);
let actual = $sitepw.value;
Expand Down Expand Up @@ -284,7 +284,7 @@ export async function runTests() {
}
// Test clear superpw
async function testClearSuperpw() {
const expected = "UG1qIyn6mSuJ";
const expected = "c3EEm4qRFSfk";
await resetState();
await triggerEvent("click", $settingsshow, "settingsshowResolver");
await fillForm("qwerty", "alantheguru.alanhkarp.com", "Guru", "alan");
Expand Down

0 comments on commit c95baa1

Please sign in to comment.