summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Kowalski <rok@kowalski.gd>2014-03-30 01:58:23 +0100
committerRobert Kowalski <rok@kowalski.gd>2014-03-30 03:59:19 +0200
commitce352c8d9a537574408d4fac69590384211b1203 (patch)
tree80e6e8b6f995b9ce48130117ebc1e900a1a546f2
parent238f78ed36f256de31b660b537c1d4c6008a0627 (diff)
downloadcouchdb-ce352c8d9a537574408d4fac69590384211b1203.tar.gz
Fauxton: fix tests for Auth
-rw-r--r--src/fauxton/app/addons/auth/test/baseSpec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fauxton/app/addons/auth/test/baseSpec.js b/src/fauxton/app/addons/auth/test/baseSpec.js
index 1525306d9..ad92ec873 100644
--- a/src/fauxton/app/addons/auth/test/baseSpec.js
+++ b/src/fauxton/app/addons/auth/test/baseSpec.js
@@ -27,7 +27,7 @@ define([
FauxtonAPI.auth = new Auth();
Base.initialize();
FauxtonAPI.auth.authDeniedCb();
- assert.ok(navigateSpy.withArgs('/noAccess', {replace: true}).calledOnce);
+ assert.ok(navigateSpy.withArgs('/noAccess?urlback=', {replace: true}).calledOnce);
});
});
});