From f1ceb1b38f2e75c117f77a91d4595f8fbcc8d354 Mon Sep 17 00:00:00 2001 From: ramoj Date: Tue, 14 Jan 2025 06:23:10 +0000 Subject: [PATCH] Linter appeasement --- tests/lib/preflights/ssh_multiplexer.py | 3 ++- tests/lib/processors/openrelik.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/lib/preflights/ssh_multiplexer.py b/tests/lib/preflights/ssh_multiplexer.py index de05854a1..7667c6985 100644 --- a/tests/lib/preflights/ssh_multiplexer.py +++ b/tests/lib/preflights/ssh_multiplexer.py @@ -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([ diff --git a/tests/lib/processors/openrelik.py b/tests/lib/processors/openrelik.py index 350f15592..a6e865211 100644 --- a/tests/lib/processors/openrelik.py +++ b/tests/lib/processors/openrelik.py @@ -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()