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 c60ab14 commit 032cba9Copy full SHA for 032cba9
tests/test_mig_cgibin_cat.py
@@ -47,6 +47,8 @@ def test_returns_file_output_with_single_file_match(self):
47
for index, o in enumerate(output_objects):
48
print("encountered output objects:")
49
print("%d: %s" % (index, o['object_type']))
50
+ error_object = [o for o in output_objects if o['object_type'] == 'error_text'][0]
51
+ print("error object text: %s" % (error_object['text'],))
52
raise
53
output_obj = output_objects[0]
54
self.assertEqual(output_obj['object_type'], 'file_output')
0 commit comments