diff options
author | Filipe David Borba Manana <fdmanana@apache.org> | 2010-07-14 17:56:06 +0000 |
---|---|---|
committer | Filipe David Borba Manana <fdmanana@apache.org> | 2010-07-14 17:56:06 +0000 |
commit | de53d5ca550ce54bf72273bb05687b87b4817483 (patch) | |
tree | ec09273f27c8145a60165bbf24a3f6636cc48ea0 | |
parent | 0dfa5afb632d06cfeb98853aa2c41f4aa763546a (diff) |
Fix test assertions introduced in revision 964108.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@964111 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | share/www/script/test/auth_cache.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/www/script/test/auth_cache.js b/share/www/script/test/auth_cache.js index 8c3fa943..75827dbd 100644 --- a/share/www/script/test/auth_cache.js +++ b/share/www/script/test/auth_cache.js @@ -236,8 +236,8 @@ couchTests.auth_cache = function(debug) { hits_after = hits(); misses_after = misses(); - T(misses_after === (misses_before + 1)); - T(hits_after === hits_before); + T(misses_after === misses_before); + T(hits_after === (hits_before + 1)); } |