diff options
Diffstat (limited to 'test/snippets/export.js')
-rw-r--r-- | test/snippets/export.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/snippets/export.js b/test/snippets/export.js index 2a757269f..bf334f025 100644 --- a/test/snippets/export.js +++ b/test/snippets/export.js @@ -21,9 +21,6 @@ export function test() { if (where.default !== "hi") { throw new Error(`_auth import is incorrect.`); } - console.assert( - powerLevel.description === "9001", - "Symbol is not exported correctly", - ); + console.assert(powerLevel.description === "9001", "Symbol is not exported correctly"); return testDone(import.meta.url); } |