We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a85670d commit b81aaeaCopy full SHA for b81aaea
tests/test_json_app.py
@@ -79,12 +79,12 @@ def test_connection_kwargs_with_false_values(self):
79
app.config['MONGODB_SETTINGS'] = {
80
'DB': 'testing',
81
'alias': 'test',
82
- 'ssl_validate_hostname': False
+ 'use_greenlets': False
83
}
84
app.config['TESTING'] = True
85
db = MongoEngine()
86
db.init_app(app)
87
- self.assertFalse(db.connection.ssl_validate_hostname)
+ self.assertFalse(db.connection.use_greenlets)
88
89
def test_with_id(self):
90
c = self.app.test_client()
0 commit comments