summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/test_mongoengine.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_mongoengine.py b/tests/test_mongoengine.py
index c0a019c..1cf0cb5 100644
--- a/tests/test_mongoengine.py
+++ b/tests/test_mongoengine.py
@@ -61,7 +61,7 @@ class MongoEngineTestCase(unittest.TestCase):
db_name = os.environ.get('MONGO_DATABASE', 'factory_boy_test')
db_host = os.environ.get('MONGO_HOST', 'localhost')
db_port = int(os.environ.get('MONGO_PORT', '27017'))
- MONGOD_TIMEOUT_MS = 100
+ server_timeout_ms = int(os.environ.get('MONGO_TIMEOUT', '300'))
@classmethod
def setUpClass(cls):