You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2019/02/01 16:47:14 UTC

[couchdb] branch jenkins-fix updated: add w:3 for lots of docs test (#1893)

This is an automated email from the ASF dual-hosted git repository.

wohali pushed a commit to branch jenkins-fix
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/jenkins-fix by this push:
     new 4127726  add w:3 for lots of docs test (#1893)
     new 957f278  Merge branch 'master' into jenkins-fix
4127726 is described below

commit 4127726f26fc0e3d7423a058d4c1934a47a464a2
Author: garren smith <ga...@gmail.com>
AuthorDate: Fri Feb 1 10:46:38 2019 +0200

    add w:3 for lots of docs test (#1893)
---
 test/elixir/test/lots_of_docs_test.exs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/elixir/test/lots_of_docs_test.exs b/test/elixir/test/lots_of_docs_test.exs
index 72e9863..b217e06 100644
--- a/test/elixir/test/lots_of_docs_test.exs
+++ b/test/elixir/test/lots_of_docs_test.exs
@@ -99,7 +99,7 @@ defmodule LotsOfDocsTest do
   end
 
   defp bulk_post(docs, db) do
-    resp = Couch.post("/#{db}/_bulk_docs", body: %{docs: docs})
+    resp = Couch.post("/#{db}/_bulk_docs", query: [w: 3], body: %{docs: docs})
 
     assert resp.status_code == 201 and length(resp.body) == length(docs), """
     Expected 201 and the same number of response rows as in request, but got