Skip to content

Commit 5dba98e

Browse files
committed
fix test_empty_run
1 parent f07342e commit 5dba98e

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

examples/threads/test_thread_logging.py

Whitespace-only changes.

tests/integration/test_empty_run.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ def test_empty_run(mock_client_init):
3434
3535
:param mock_client_init: Pytest fixture
3636
"""
37-
result = utils.run_pytest_tests(tests=['examples/epmty/'])
37+
result = utils.run_pytest_tests(tests=['examples/empty/'])
3838

39-
assert int(result) == 4, 'Exit code should be 4 (no tests)'
39+
assert int(result) == 5, 'Exit code should be 5 (no tests)'
4040

4141
mock_client = mock_client_init.return_value
4242
expect(mock_client.start_launch.call_count == 1,

tests/integration/test_threads_logs.py

Whitespace-only changes.

0 commit comments

Comments
 (0)