Skip to content

Commit d340196

Browse files
committed
src: avoid renaming WorkerThread
Signed-off-by: Stewart X Addison <sxa@ibm.com>
1 parent 2e48534 commit d340196

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/addons/uv-thread-name/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if (isMainThread) {
1616

1717
const worker = new Worker(__filename);
1818
worker.on('message', common.mustCall((data) => {
19-
assert.strictEqual(data, 'node-WorkerThread');
19+
assert.strictEqual(data, 'WorkerThread');
2020
}));
2121
worker.on('error', common.mustNotCall());
2222
worker.on('exit', common.mustCall((code) => {

0 commit comments

Comments
 (0)