6 lines
168 B
Python
6 lines
168 B
Python
"""Deliberate failing test to verify test dashboard shows failures."""
|
|
|
|
|
|
def test_this_should_fail():
|
|
assert 1 == 2, "Deliberate failure to test dashboard display"
|