You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ch...@apache.org on 2014/08/28 19:35:35 UTC

[40/50] [abbrv] couch commit: updated refs/heads/1963-eunit-bigcouch to 3ecd0a0

WIP: Switch to using test_util:start_config


Project: http://git-wip-us.apache.org/repos/asf/couchdb-couch/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-couch/commit/c8f1f494
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-couch/tree/c8f1f494
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-couch/diff/c8f1f494

Branch: refs/heads/1963-eunit-bigcouch
Commit: c8f1f4945f9d0cca377dc8efd3d2aba4e8b14363
Parents: c4db25a
Author: Russell Branca <ch...@apache.org>
Authored: Fri Aug 15 13:01:56 2014 -0700
Committer: Russell Branca <ch...@apache.org>
Committed: Thu Aug 28 10:34:30 2014 -0700

----------------------------------------------------------------------
 test/couch_doc_json_tests.erl | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/c8f1f494/test/couch_doc_json_tests.erl
----------------------------------------------------------------------
diff --git a/test/couch_doc_json_tests.erl b/test/couch_doc_json_tests.erl
index ef5d0f2..64dea96 100644
--- a/test/couch_doc_json_tests.erl
+++ b/test/couch_doc_json_tests.erl
@@ -17,12 +17,12 @@
 
 
 setup() ->
-    config:start_link(?CONFIG_CHAIN),
+    {ok, Pid} = test_util:start_config(?CONFIG_CHAIN),
     config:set("attachments", "compression_level", "0", false),
-    ok.
+    Pid.
 
 teardown(_) ->
-    config:stop().
+    test_util:stop_config().
 
 
 json_doc_test_() ->