Skip to content

Commit 36e4e3d

Browse files
authored
test: remove spaces from test runner test names
PR-URL: #47733 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com>
1 parent 6700aac commit 36e4e3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/parallel/test-runner-concurrency.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const os = require('node:os');
1010

1111
tmpdir.refresh();
1212

13-
describe('Concurrency option (boolean) = true ', { concurrency: true }, () => {
13+
describe('Concurrency option (boolean) = true', { concurrency: true }, () => {
1414
let isFirstTestOver = false;
1515
it('should start the first test', () => new Promise((resolve) => {
1616
setImmediate(() => { isFirstTestOver = true; resolve(); });
@@ -22,7 +22,7 @@ describe('Concurrency option (boolean) = true ', { concurrency: true }, () => {
2222
});
2323

2424
describe(
25-
'Concurrency option (boolean) = false ',
25+
'Concurrency option (boolean) = false',
2626
{ concurrency: false },
2727
() => {
2828
let isFirstTestOver = false;

0 commit comments

Comments
 (0)