Skip to content

Commit

Permalink
Fixed flake8.
Browse files Browse the repository at this point in the history
  • Loading branch information
hiker committed Oct 23, 2024
1 parent f6e16e9 commit 54be09b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit_tests/tools/test_tool_repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,6 @@ def test_tool_repository_no_tool_available():
new_callable=mock.PropertyMock) as is_available:
is_available.return_value = False
with pytest.raises(RuntimeError) as err:
def_tool = tr.get_default(Category.SHELL)
tr.get_default(Category.SHELL)
assert ("Can't find available 'SHELL' tool. Tools are 'bash,sh,ksh,"
"dash'" in str(err.value))

0 comments on commit 54be09b

Please sign in to comment.