summaryrefslogtreecommitdiff
path: root/src/mango/test/20-no-timeout-test.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mango/test/20-no-timeout-test.py')
-rw-r--r--src/mango/test/20-no-timeout-test.py34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/mango/test/20-no-timeout-test.py b/src/mango/test/20-no-timeout-test.py
index 978deb220..93dc146a3 100644
--- a/src/mango/test/20-no-timeout-test.py
+++ b/src/mango/test/20-no-timeout-test.py
@@ -16,23 +16,23 @@ import unittest
class LongRunningMangoTest(mango.DbPerClass):
- def setUp(self):
- self.db.recreate()
- docs = []
- for i in range(100000):
- docs.append({
- "_id": str(i),
- "another": "field"
- })
- if i % 20000 == 0:
- self.db.save_docs(docs)
+ def setUp(self):
+ self.db.recreate()
docs = []
+ for i in range(100000):
+ docs.append({
+ "_id": str(i),
+ "another": "field"
+ })
+ if i % 20000 == 0:
+ self.db.save_docs(docs)
+ docs = []
# This test should run to completion and not timeout
- def test_query_does_not_time_out(self):
- selector = {
- "_id": {"$gt": 0},
- "another": "wrong"
- }
- docs = self.db.find(selector)
- self.assertEqual(len(docs), 0)
+ def test_query_does_not_time_out(self):
+ selector = {
+ "_id": {"$gt": 0},
+ "another": "wrong"
+ }
+ docs = self.db.find(selector)
+ self.assertEqual(len(docs), 0)