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 e87874f commit 1be41d6Copy full SHA for 1be41d6
test/test_main.py
@@ -109,9 +109,11 @@ def wrap_text(text, width):
109
110
headers = ['Feature', 'Step', 'Error Type', 'Location']
111
print(tabulate.tabulate(table_data, headers=headers, tablefmt='fancy_grid'))
112
+
113
+ assert not caught_exceptions
114
115
if base.startswith('fail'):
- assert len(error_outcomes) > 0 or caught_exceptions
116
+ assert len(error_outcomes) > 0
117
elif base.startswith('pass'):
118
assert len(error_outcomes) == 0 and len(activating_outcomes) > 0
119
elif base.startswith('na'):
0 commit comments