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

tonysun83 pushed a commit to branch flexible-js-tests
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/flexible-js-tests by this push:
     new b71bd68  fix intersection to use difference
b71bd68 is described below

commit b71bd68db43d7a3ca048f6d81c825f22cbd9b4f1
Author: Tony Sun <[email protected]>
AuthorDate: Sat Oct 14 09:38:38 2017 -0700

    fix intersection to use difference
---
 test/javascript/run | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/javascript/run b/test/javascript/run
index d216bfd..d748519 100755
--- a/test/javascript/run
+++ b/test/javascript/run
@@ -122,7 +122,7 @@ def main():
     run_list = ["test/javascript/tests"] if not opts.suites else opts.suites
     run_list = build_test_case_paths(run_list)
     ignore_list = build_test_case_paths(opts.ignore)
-    tests = list(set(run_list)^set(ignore_list))
+    tests = list(set(run_list)-set(ignore_list))
 
     if opts.start is not None:
         tmp = []

-- 
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].

Reply via email to