Skip to content

Commit 7581351

Browse files
committed
Revert "xxx output the unexpeted output objects to aid debugging"
This reverts commit d98a1e5.
1 parent a4a6ed5 commit 7581351

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

tests/test_mig_cgibin_cat.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,7 @@ def test_returns_file_output_with_single_file_match(self):
5757
}
5858

5959
(output_objects, status) = main(self.configuration, self.logger, client_id=self.TEST_CLIENT_ID, user_arguments_dict=payload, environ=self.test_environ)
60-
try:
61-
self.assertEqual(len(output_objects), 1)
62-
except:
63-
for index, o in enumerate(output_objects):
64-
print("%d: %s" % (index, o['output_type']))
65-
raise
60+
self.assertEqual(len(output_objects), 1)
6661
output_obj = output_objects[0]
6762
self.assertEqual(output_obj['object_type'], 'file_output')
6863

0 commit comments

Comments
 (0)