diff options
author | Filipe David Borba Manana <fdmanana@apache.org> | 2010-07-14 17:57:10 +0000 |
---|---|---|
committer | Filipe David Borba Manana <fdmanana@apache.org> | 2010-07-14 17:57:10 +0000 |
commit | ee4a8312a43dcc00f42df7efd9824a176d71c73b (patch) | |
tree | ed2fc42a4dea7c572ce8fab6516880423e3dff92 /share | |
parent | 7b3cb1f05e603789544e668155a497676502cb17 (diff) |
Merge revision 964111 from trunk:
Fix test assertions introduced in revision 964108.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.0.x@964112 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share')
-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)); } |