You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2016/07/22 12:46:28 UTC

couch commit: updated refs/heads/master to a128c2c

Repository: couchdb-couch
Updated Branches:
  refs/heads/master ac3dae37d -> a128c2cc6


Start couch_log for tests

Now that there's a supervision tree involved we have to start the app to
use it.


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

Branch: refs/heads/master
Commit: a128c2cc6a3731e4c1824553252442cd18173e36
Parents: ac3dae3
Author: Paul J. Davis <pa...@gmail.com>
Authored: Fri Jul 22 07:45:59 2016 -0500
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Fri Jul 22 07:45:59 2016 -0500

----------------------------------------------------------------------
 src/test_util.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/a128c2cc/src/test_util.erl
----------------------------------------------------------------------
diff --git a/src/test_util.erl b/src/test_util.erl
index 88cfc63..3c4d170 100644
--- a/src/test_util.erl
+++ b/src/test_util.erl
@@ -220,7 +220,7 @@ start(Module, ExtraApps) ->
     start(Module, ExtraApps, []).
 
 start(Module, ExtraApps, Options) ->
-    Apps = start_applications([config, ioq, couch_epi | ExtraApps]),
+    Apps = start_applications([config, couch_log, ioq, couch_epi | ExtraApps]),
     ToMock = [config, couch_stats] -- proplists:get_value(dont_mock, Options, []),
     mock(ToMock),
     #test_context{module = Module, mocked = ToMock, started = Apps}.