You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by fd...@apache.org on 2010/07/14 19:56:06 UTC

svn commit: r964111 - /couchdb/trunk/share/www/script/test/auth_cache.js

Author: fdmanana
Date: Wed Jul 14 17:56:06 2010
New Revision: 964111

URL: http://svn.apache.org/viewvc?rev=964111&view=rev
Log:
Fix test assertions introduced in revision 964108.

Modified:
    couchdb/trunk/share/www/script/test/auth_cache.js

Modified: couchdb/trunk/share/www/script/test/auth_cache.js
URL: http://svn.apache.org/viewvc/couchdb/trunk/share/www/script/test/auth_cache.js?rev=964111&r1=964110&r2=964111&view=diff
==============================================================================
--- couchdb/trunk/share/www/script/test/auth_cache.js (original)
+++ couchdb/trunk/share/www/script/test/auth_cache.js Wed Jul 14 17:56:06 2010
@@ -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));
   }