Tests: Fix Clear cookies test (#4050)

* name uses a placeholder instead of a value so this should be nothing
gateway-timeout-during-tests
John McLear 2020-05-28 15:27:48 +01:00 committed by GitHub
parent 40f36d7eb5
commit 51eb1a7ce7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -36,7 +36,6 @@ describe("the test helper", function(){
done(); done();
}); });
}); });
// Make sure the cookies are cleared, and make sure that the cookie // Make sure the cookies are cleared, and make sure that the cookie
// clearing has taken effect at this point in the code. It has been // clearing has taken effect at this point in the code. It has been
// observed that the former can happen without the latter if there // observed that the former can happen without the latter if there
@ -105,7 +104,7 @@ describe("the test helper", function(){
// confirm that the session was actually cleared // confirm that the session was actually cleared
var $usernameInput = chrome$("#myusernameedit"); var $usernameInput = chrome$("#myusernameedit");
expect($usernameInput.val()).to.be('Enter your name'); expect($usernameInput.val()).to.be('');
done(); done();
}); });