You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2021/09/07 16:01:59 UTC

[couchdb] branch main updated: Replace couch_js with js_engine in exunit pagination test

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

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


The following commit(s) were added to refs/heads/main by this push:
     new eee0a61  Replace couch_js with js_engine in exunit pagination test
eee0a61 is described below

commit eee0a61a3af4e9e0f8d857205f8aba1f2b822fd9
Author: Jay Doane <ja...@apache.org>
AuthorDate: Sat Sep 4 13:36:54 2021 -0700

    Replace couch_js with js_engine in exunit pagination test
    
    See: https://github.com/apache/couchdb/commit/3907e9f0abd2bfc26e8384a819939ea964daf157
---
 src/chttpd/test/exunit/pagination_test.exs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/chttpd/test/exunit/pagination_test.exs b/src/chttpd/test/exunit/pagination_test.exs
index 4e0a5d6..1c2e509 100644
--- a/src/chttpd/test/exunit/pagination_test.exs
+++ b/src/chttpd/test/exunit/pagination_test.exs
@@ -15,8 +15,8 @@ defmodule Couch.Test.Pagination do
   end
 
   setup_all do
-    test_ctx =
-      :test_util.start_couch([:chttpd, :couch_jobs, :couch_views, :couch_eval, :couch_js])
+    extra_apps = [:chttpd, :couch_jobs, :couch_views, :couch_eval, :js_engine]
+    test_ctx = :test_util.start_couch(extra_apps)
 
     :ok = create_admin("adm", "pass")