Skip to content

Commit 270ffdb

Browse files
committed
Fix a false alarm from codacy
1 parent 07ab46f commit 270ffdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/script/test_frida.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def testDispatchErrorMessage(dispatcherThatHooksOneMethod, capsys):
167167
class TestBehavior:
168168
@staticmethod
169169
def testHasString(methodCallMessages):
170-
behavior = Behavior(methodCallMessages[0])
170+
behavior = Behavior(methodCallMessages[0]) # nosec E1120
171171
capturedStrings = behavior.hasString("SimpleString")
172172
assert capturedStrings == ["SimpleString"]
173173

0 commit comments

Comments
 (0)