Skip to content

Commit 09a14d1

Browse files
add node: prefix to assert import
1 parent 8f55596 commit 09a14d1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

test/parallel/test-cli-node-cli-manpage-env-vars.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import '../common/index.mjs';
2-
import assert from 'assert';
2+
import assert from 'node:assert';
33
import { createReadStream } from 'node:fs';
44
import { createInterface } from 'node:readline';
55
import { resolve, join } from 'node:path';

test/parallel/test-cli-node-cli-manpage-options.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import assert from 'node:assert';
33
import { createReadStream, readFileSync } from 'node:fs';
44
import { createInterface } from 'node:readline';
55
import { resolve, join } from 'node:path';
6-
import { EOL } from "node:os";
6+
import { EOL } from 'node:os';
77

88
// This test checks that all the CLI flags defined in the public CLI documentation (doc/api/cli.md)
99
// are also documented in the manpage file (doc/node.1)

0 commit comments

Comments
 (0)