Skip to content

Commit 796110f

Browse files
committed
all tests pass
1 parent f52726e commit 796110f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/this.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ const me = new User({ username: 'LambdaSchool', password: 'correcthorsebatteryst
2323
const result = me.checkPwd('correcthorsebatterystaple'); // should return `true`
2424
console.log(result);// ---> true
2525
// false case
26-
const falseResult = me.checkPwd('staplehorsecorrectbattery'); // should return `true`
27-
console.log(falseResult);// ---> true
26+
const falseResult = me.checkPwd('staplehorsecorrectbattery'); // should return `false`
27+
console.log(falseResult);// ---> false
2828

2929

3030
const checkPassword = function comparePasswords(passwordToCompare) {

0 commit comments

Comments
 (0)