diff options
author | Filipe David Borba Manana <fdmanana@apache.org> | 2010-12-07 20:27:13 +0000 |
---|---|---|
committer | Filipe David Borba Manana <fdmanana@apache.org> | 2010-12-07 20:27:13 +0000 |
commit | a8fc23aeac3145c5c0d0840beb3d27365bd202bf (patch) | |
tree | 19e9275df19126927a5d48f723f37806b7c5c623 /share/www/script/test | |
parent | 2d591fd1e45338215d1bdebd84884d8044779327 (diff) |
Merged revision 1043186 from trunk:
Replicator improvement: send "unauthorized" error message instead of "db_not_found" when a remote endpoint can not be accessed due to authorization.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.1.x@1043188 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/www/script/test')
-rw-r--r-- | share/www/script/test/replication.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/www/script/test/replication.js b/share/www/script/test/replication.js index 6f54a195..5acff4ab 100644 --- a/share/www/script/test/replication.js +++ b/share/www/script/test/replication.js @@ -712,7 +712,7 @@ couchTests.replication = function(debug) { ); T(false, "replication should have failed"); } catch(x) { - T(x.error === "db_not_found"); + T(x.error === "unauthorized"); } atts_ddoc_copy = dbB.open(atts_ddoc._id); |