diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2015-04-12 12:23:49 +0200 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2015-04-12 12:23:49 +0200 |
commit | 16b414d27d638fd76701f10fe338c67d7d9dfde0 (patch) | |
tree | 9151a68c185e85ebb62c217fb041e89c7f1f37ca /tests | |
parent | c58a190b12535bdcfc984b1be8b72a6a2c84a2a8 (diff) | |
download | factory-boy-16b414d27d638fd76701f10fe338c67d7d9dfde0.tar factory-boy-16b414d27d638fd76701f10fe338c67d7d9dfde0.tar.gz |
test_mongoengine: fix typo
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_mongoengine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_mongoengine.py b/tests/test_mongoengine.py index 1cf0cb5..6fa4125 100644 --- a/tests/test_mongoengine.py +++ b/tests/test_mongoengine.py @@ -73,7 +73,7 @@ class MongoEngineTestCase(unittest.TestCase): # PyMongo>=2.1 requires an explicit read_preference. read_preference=mongo_rp.ReadPreference.PRIMARY, # PyMongo>=2.1 has a 20s timeout, use 100ms instead - serverselectiontimeoutms=cls.MONGOD_TIMEOUT_MS, + serverselectiontimeoutms=cls.server_timeout_ms, ) @classmethod |