Skip to content

Commit

Permalink
linter fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
rscottbailey committed Oct 21, 2021
1 parent 99107b7 commit 477a1fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_base_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def test_scan_does_not_rescan(self, mock_regex, mock_entropy):
self.options.entropy = True
test_scanner = TestScanner(self.options)
test_scanner._completed = True # pylint: disable=protected-access
test_scanner._issues = [1, 2, 3]
test_scanner._issues = [1, 2, 3] # pylint: disable=protected-access
result = list(test_scanner.scan())
mock_regex.assert_not_called()
mock_entropy.assert_not_called()
Expand Down

0 comments on commit 477a1fd

Please sign in to comment.