summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Doane <jaydoane@apache.org>2020-02-12 00:23:35 -0800
committerGarren Smith <garren.smith@gmail.com>2020-02-13 12:19:24 +0200
commitf1d153fcefe64d4aa702745f62d730a59f9352fd (patch)
tree3cfc913941e7b45fae3ee373011a2913811d418c
parentde87d16fbaa15f9c4cc3e9fb21359a304bc0550a (diff)
downloadcouchdb-f1d153fcefe64d4aa702745f62d730a59f9352fd.tar.gz
Remove prints
-rw-r--r--src/mango/test/01-index-crud-test.py1
-rw-r--r--src/mango/test/15-execution-stats-test.py1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/mango/test/01-index-crud-test.py b/src/mango/test/01-index-crud-test.py
index 3434c6611..dd9ab1ade 100644
--- a/src/mango/test/01-index-crud-test.py
+++ b/src/mango/test/01-index-crud-test.py
@@ -91,7 +91,6 @@ class IndexCrudTests(mango.DbPerClass):
for idx in self.db.list_indexes():
if idx["name"] != "idx_01":
continue
- print(idx)
self.assertEqual(idx["def"]["fields"], [{"foo": "asc"}, {"bar": "asc"}])
return
raise AssertionError("index not created")
diff --git a/src/mango/test/15-execution-stats-test.py b/src/mango/test/15-execution-stats-test.py
index 90430d8fe..0ac8a3d9e 100644
--- a/src/mango/test/15-execution-stats-test.py
+++ b/src/mango/test/15-execution-stats-test.py
@@ -36,7 +36,6 @@ class ExecutionStatsTests(mango.UserDocsTests):
resp = self.db.find(
{"age": {"$lt": 35}}, return_raw=True, r=3, executionStats=True
)
- print(resp)
self.assertEqual(len(resp["docs"]), 3)
self.assertEqual(resp["execution_stats"]["total_keys_examined"], 0)
self.assertEqual(resp["execution_stats"]["total_docs_examined"], 3)