summaryrefslogtreecommitdiff
path: root/src/mango/test/07-text-custom-field-list-test.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mango/test/07-text-custom-field-list-test.py')
-rw-r--r--src/mango/test/07-text-custom-field-list-test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mango/test/07-text-custom-field-list-test.py b/src/mango/test/07-text-custom-field-list-test.py
index 50a5c0522..a43e33003 100644
--- a/src/mango/test/07-text-custom-field-list-test.py
+++ b/src/mango/test/07-text-custom-field-list-test.py
@@ -56,7 +56,7 @@ class CustomFieldsTest(mango.UserDocsTextTests):
try:
self.db.find({"selector": {"$or": [{"favorites": "Ruby"},
{"favorites.0":"Ruby"}]}})
- except Exception, e:
+ except Exception as e:
assert e.response.status_code == 400
def test_in_with_array(self):
@@ -82,7 +82,7 @@ class CustomFieldsTest(mango.UserDocsTextTests):
vals = ["Random Garbage", 52, {"Versions": {"Alpha": "Beta"}}]
try:
self.db.find({"favorites": {"$in": vals}})
- except Exception, e:
+ except Exception as e:
assert e.response.status_code == 400
def test_nin_with_array(self):