Skip to content

Commit a435231

Browse files
authored
Merge pull request #7 from jessicahuang523/main
skipTrace tiny fix
2 parents 903f8d1 + f8bfbd5 commit a435231

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/identify_param/runner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def traceInTestCode(self, trace):
6161
return False
6262

6363
def skipTrace(self, trace):
64-
if trace == "java.lang.Thread":
64+
if "java.lang.Thread" in trace:
6565
return True
6666
if "sun.reflect" in trace:
6767
return True

0 commit comments

Comments
 (0)