summaryrefslogtreecommitdiff
path: root/test/parallel/test-trace-events-all.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-trace-events-all.js')
-rw-r--r--test/parallel/test-trace-events-all.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-trace-events-all.js b/test/parallel/test-trace-events-all.js
index b9f9b70a61..8e836561ff 100644
--- a/test/parallel/test-trace-events-all.js
+++ b/test/parallel/test-trace-events-all.js
@@ -27,7 +27,7 @@ proc.once('exit', common.mustCall(() => {
return false;
if (trace.cat !== 'v8')
return false;
- if (trace.name !== 'V8.GCScavenger')
+ if (!trace.name.startsWith('V8.'))
return false;
return true;
}));