Skip to content

Commit

Permalink
Deliberately break a test
Browse files Browse the repository at this point in the history
nwiltsie committed Jan 12, 2024
1 parent c96408b commit 0dda71c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/test_NFTestCase.py
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ def test_submit(mock_case, mock_sp, mock_selectors):
test_stdout = 'hello world'

mock_sp.return_value.__enter__ = lambda x: SimpleNamespace(
**{'stdout': test_stdout, 'stderr': '', 'poll': lambda: True}
**{'stdout': test_stdout + "extra", 'stderr': '', 'poll': lambda: True}
)
mock_selectors.DefaultSelector.register.return_value = lambda x, y, z: None

0 comments on commit 0dda71c

Please sign in to comment.