diff options
author | Paul Joseph Davis <davisp@apache.org> | 2011-04-21 23:04:29 +0000 |
---|---|---|
committer | Paul Joseph Davis <davisp@apache.org> | 2011-04-21 23:04:29 +0000 |
commit | d277f7173a10910cab990b5b18e7b01bfc5034f2 (patch) | |
tree | 2b3fd14f3fd63208f6961de2d959175222dae5b4 /test/etap | |
parent | 7abfc073e9332cf73dd03c05b8a32aba32236fcf (diff) |
More fixes for the build system.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.1.x@1095842 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/etap')
-rwxr-xr-x | test/etap/081-config-override.t | 2 | ||||
-rwxr-xr-x | test/etap/112-replication-missing-revs.t | 9 |
2 files changed, 2 insertions, 9 deletions
diff --git a/test/etap/081-config-override.t b/test/etap/081-config-override.t index 95baa023..01f8b4c2 100755 --- a/test/etap/081-config-override.t +++ b/test/etap/081-config-override.t @@ -148,7 +148,7 @@ test() -> ), etap:is( - couch_config:set("httpd", "port", "8080", false), + couch_config:set("httpd", "port", "8080"), ok, "Writing {httpd, port} is kosher." ), diff --git a/test/etap/112-replication-missing-revs.t b/test/etap/112-replication-missing-revs.t index ebaa05ed..39280aee 100755 --- a/test/etap/112-replication-missing-revs.t +++ b/test/etap/112-replication-missing-revs.t @@ -39,13 +39,6 @@ conn = nil }). -config_files() -> - lists:map(fun test_util:build_file/1, [ - "etc/couchdb/default_dev.ini", - "etc/couchdb/local_dev.ini", - "test/etap/random_port.ini" - ]). - main(_) -> test_util:init_code_path(), @@ -60,7 +53,7 @@ main(_) -> ok. test() -> - couch_server_sup:start_link(config_files()), + couch_server_sup:start_link(test_util:config_files()), ibrowse:start(), crypto:start(), |