summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Doane <jaydoane@apache.org>2020-02-12 00:23:35 -0800
committerJay Doane <jaydoane@apache.org>2020-02-12 00:23:35 -0800
commit2982dd16ca8d59f0a2d1dbf2d2bc8944b33f6d8e (patch)
treecde3678e781aaeb1da1271be78e5a73976ead9db
parent7a2e91b451f3101353ae08c131beeb868ac132c4 (diff)
downloadcouchdb-test-improvements.tar.gz
Remove printstest-improvements
-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)