Skip to content

Commit 3b3060b

Browse files
Remove exception to keep running all tests
1 parent 868d28f commit 3b3060b

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

tests_and_examples/examples/top_values.json

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2242,8 +2242,7 @@
22422242
"query": {
22432243
"enumerated-top-values": {
22442244
"equals": [
2245-
"1000001",
2246-
"1000002"
2245+
"1000000"
22472246
],
22482247
"enumerated-test-field": 5
22492248
}
@@ -2254,12 +2253,8 @@
22542253
"enumerated-top-values": {
22552254
"enumerated-test-field": [
22562255
{
2257-
"value": "1000001",
2258-
"quantity": 50
2259-
},
2260-
{
2261-
"value": "1000002",
2262-
"quantity": 50
2256+
"value": "1000000",
2257+
"quantity": 100
22632258
}
22642259
]
22652260
}

tests_and_examples/run_query_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def compare_result(self, query_type, test, result):
268268
print ' Expected: "{}": {}'.format(key, value)
269269
print ' Result: "{}": {}'.format(key, result[key])
270270
print ' Status: Failed'
271-
raise Exception("Stop another test.")
271+
return
272272

273273
self.num_successes += 1
274274

0 commit comments

Comments
 (0)