Skip to content

Commit a004bf5

Browse files
committed
test: fix spacing issue
there are still some spacing diffs, and this addresses that Fixes: #60815
1 parent 7e12ac4 commit a004bf5

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

test/es-module/test-esm-tla-syntax-errors-not-recognized-as-tla-error.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ describe('unusual top-level await syntax errors', () => {
6666
const { code, signal, stdout, stderr } = await spawnPromisified(process.execPath, [
6767
'--eval',
6868
`
69-
${wrapperExpression}
70-
`,
69+
${wrapperExpression}
70+
`,
7171
]);
7272
assert.match(stderr, error);
7373
assert.strictEqual(stdout, '');

test/parallel/test-compile-cache-typescript-commonjs.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22

33
// This tests NODE_COMPILE_CACHE works for CommonJS with types.
44

5-
const common = require('../common');
6-
if (!process.config.variables.node_use_amaro) {
7-
common.skip('Requires Amaro');
8-
}
5+
require('../common');
96
const { spawnSyncAndAssert } = require('../common/child_process');
107
const assert = require('assert');
118
const tmpdir = require('../common/tmpdir');

test/parallel/test-util-getcallsites.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ if (!process.config.variables.node_use_amaro) {
66
}
77
const fixtures = require('../common/fixtures');
88
const file = fixtures.path('get-call-sites.js');
9+
910
const { getCallSites } = require('node:util');
1011
const { spawnSync } = require('node:child_process');
1112
const assert = require('node:assert');

0 commit comments

Comments
 (0)