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

[couchdb] branch master updated: fix test url to fix test

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

garren pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 076884f  fix test url to fix test
076884f is described below

commit 076884fe65950bd8f770de59195dd6c7f7edac7c
Author: Garren Smith <ga...@gmail.com>
AuthorDate: Thu Jan 24 11:35:23 2019 +0200

    fix test url to fix test
---
 test/elixir/test/partition_design_docs_test.exs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/elixir/test/partition_design_docs_test.exs b/test/elixir/test/partition_design_docs_test.exs
index 42a2ced..4ccd63f 100644
--- a/test/elixir/test/partition_design_docs_test.exs
+++ b/test/elixir/test/partition_design_docs_test.exs
@@ -9,7 +9,7 @@ defmodule PartitionDesignDocsTest do
   test "/_partition/:pk/_design/doc 404", context do
     db_name = context[:db_name]
 
-    url = "/#{db_name}/_partition/fake-key/_design/mrtest/"
+    url = "/#{db_name}/_partition/fakekey/_design/mrtest/_view/some"
     resp = Couch.get(url)
     assert resp.status_code == 404
   end