1
0
Fork 0

Remove redundant test

This commit is contained in:
Alan Plum 2015-12-08 19:36:16 +01:00
parent 0c913dfbcf
commit ac291a9a17
1 changed files with 0 additions and 18 deletions

View File

@ -1419,24 +1419,6 @@ function SetupAuthorization () {
assertEqual(err.message, "Please provide the cookieLifetime");
},
testRefusesMissingCookieName: function () {
var err;
app = new FoxxController(fakeContext);
try {
app.activateAuthentication({
type: "cookie",
cookieLifetime: 360000,
sessionLifetime: 600
});
} catch (e) {
err = e;
}
assertEqual(err.message, "Please provide the cookieName");
},
testRefusesMissingSessionLifetime: function () {
var err;