diff options
-rw-r--r-- | src/mango/test/01-index-crud-test.py | 1 | ||||
-rw-r--r-- | src/mango/test/15-execution-stats-test.py | 1 |
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) |