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/08/29 16:48:16 UTC

svn commit: r990589 - /couchdb/branches/new_replicator/test/etap/160-vhosts.t

Author: fdmanana
Date: Sun Aug 29 14:48:16 2010
New Revision: 990589

URL: http://svn.apache.org/viewvc?rev=990589&view=rev
Log:
Merged revision 983476 from trunk:

fix the db-info assertion to match with the new committed_update_seq field

Modified:
    couchdb/branches/new_replicator/test/etap/160-vhosts.t

Modified: couchdb/branches/new_replicator/test/etap/160-vhosts.t
URL: http://svn.apache.org/viewvc/couchdb/branches/new_replicator/test/etap/160-vhosts.t?rev=990589&r1=990588&r2=990589&view=diff
==============================================================================
--- couchdb/branches/new_replicator/test/etap/160-vhosts.t (original)
+++ couchdb/branches/new_replicator/test/etap/160-vhosts.t Sun Aug 29 14:48:16 2010
@@ -105,7 +105,7 @@ test_regular_request() ->
 test_vhost_request() ->
     case ibrowse:send_req(server(), [], get, [], [{host_header, "example.com"}]) of
         {ok, _, _, Body} ->
-            {[{<<"db_name">>, <<"etap-test-db">>},_,_,_,_,_,_,_,_]}
+            {[{<<"db_name">>, <<"etap-test-db">>},_,_,_,_,_,_,_,_,_]}
                 = couch_util:json_decode(Body),
             etap:is(true, true, "should return database info");
         _Else -> false