diff options
author | Filipe David Borba Manana <fdmanana@apache.org> | 2010-12-07 20:26:32 +0000 |
---|---|---|
committer | Filipe David Borba Manana <fdmanana@apache.org> | 2010-12-07 20:26:32 +0000 |
commit | d3e93e9f7dfdbfcf6eb52688bf9ddeeba53194ea (patch) | |
tree | b1871b097a2e36a29ec487195f23acc30156ee66 /share/www/script/test | |
parent | 23bcb4a09e504d7957dbf3af958e414ba2534e85 (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.0.x@1043187 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 00773f5c..7cc1f823 100644 --- a/share/www/script/test/replication.js +++ b/share/www/script/test/replication.js @@ -667,7 +667,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); |