Skip to content

Commit 9bc1504

Browse files
committed
fixes debug json dump
1 parent 68e9412 commit 9bc1504

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_queries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ def testIssue115Limit(self):
451451
json_str = self.captureQueryMain(args)
452452
json_data = json.loads(json_str)
453453
if debug:
454-
print(json.dumps(json_data, indent=2))
454+
print(json.dumps(json_data, indent=2,default=str))
455455
print(len(json_data))
456456
self.assertEqual(limit, len(json_data))
457457

0 commit comments

Comments
 (0)