Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jleaniz committed Dec 20, 2024
1 parent 43d32e5 commit feb2663
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/lib/processors/openrelik.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class OpenRelikProcessorTest(unittest.TestCase):

def setUp(self):
"""Tests that the processor can be initialized."""
self.test_state = state_lib.DFTimewolfState(config.Config())
self.test_state = state_lib.DFTimewolfState(config.Config)
self.openrelik_module = openrelik_processor.OpenRelikProcessor(
self.test_state
)
Expand Down Expand Up @@ -134,7 +134,7 @@ def testDownloadWorkflowOutput(self, mock_publish, mock_tempfile):
123, "test_filename.plaso"
)

# Assertions
# pylint: disable=line-too-long
self.openrelik_module.openrelik_api_client.session.get.assert_called_with(
f"{self.openrelik_module.openrelik_api_client.base_url}/files/123/download"
)
Expand Down

0 comments on commit feb2663

Please sign in to comment.