diff options
author | garren smith <garren.smith@gmail.com> | 2019-02-01 10:46:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-01 10:46:38 +0200 |
commit | 4127726f26fc0e3d7423a058d4c1934a47a464a2 (patch) | |
tree | d25daac87d4d01ae2faf2cd2e8a6414a176d8e3b | |
parent | f22e71a6b143591053929518142e5d4b0f1a9138 (diff) | |
download | couchdb-4127726f26fc0e3d7423a058d4c1934a47a464a2.tar.gz |
add w:3 for lots of docs test (#1893)
-rw-r--r-- | test/elixir/test/lots_of_docs_test.exs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/elixir/test/lots_of_docs_test.exs b/test/elixir/test/lots_of_docs_test.exs index 72e9863af..b217e0682 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 |