Skip to content

Commit

Permalink
Linter appeasement
Browse files Browse the repository at this point in the history
  • Loading branch information
ramo-j committed Jan 14, 2025
1 parent 290ba7b commit f1ceb1b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/lib/preflights/ssh_multiplexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ def testProcess(self, mock_call):
"""Tests the SSH CLI has the expected parameters."""
mock_call.return_value = 0

self._module.SetUp('fakehost', 'fakeuser', None, ['-o', "ProxyCommand='test'"])
self._module.SetUp(
'fakehost', 'fakeuser', None, ['-o', "ProxyCommand='test'"])
self._ProcessModule()

mock_call.assert_called_with([
Expand Down
2 changes: 1 addition & 1 deletion tests/lib/processors/openrelik.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def testProcess(
self._module.openrelik_api_key,
)
test_path = "/test/path/*.plaso"

self._module.StoreContainer(
containers.File(name="fake_path", path=test_path))
self._ProcessModule()
Expand Down

0 comments on commit f1ceb1b

Please sign in to comment.