We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f48ab3 commit f971916Copy full SHA for f971916
test/parallel/test-setproctitle.js
@@ -14,7 +14,7 @@ const path = require('path');
14
// The title shouldn't be too long; libuv's uv_set_process_title() out of
15
// security considerations no longer overwrites envp, only argv, so the
16
// maximum title length is possibly quite short.
17
-let title = 'test';
+let title = String(process.pid);
18
19
assert.notStrictEqual(process.title, title);
20
process.title = title;
0 commit comments