diff options
author | 2023-04-20 16:35:01 -0700 | |
---|---|---|
committer | 2023-04-20 16:35:01 -0700 | |
commit | 94cd68d7a69155fa55fd02a398e087e4e7eeaed0 (patch) | |
tree | f3a444feb2e13217629fb296d584f03ef8ca2f73 /test | |
parent | 6d5378566afc723e9c32b8059320fe1a8c91d354 (diff) | |
download | bun-94cd68d7a69155fa55fd02a398e087e4e7eeaed0.tar.gz bun-94cd68d7a69155fa55fd02a398e087e4e7eeaed0.tar.zst bun-94cd68d7a69155fa55fd02a398e087e4e7eeaed0.zip |
append if the previous part is not UTF8 (#2705)
Diffstat (limited to 'test')
-rw-r--r-- | test/bundler/transpiler.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bundler/transpiler.test.js b/test/bundler/transpiler.test.js index cde968f80..407aaf197 100644 --- a/test/bundler/transpiler.test.js +++ b/test/bundler/transpiler.test.js @@ -2152,7 +2152,7 @@ class Foo { describe("simplification", () => { it("unary operator", () => { - expectPrinted("a = !(b, c)", "a = (b , !c)"); + expectPrinted("a = !(b, c)", "a = (b, !c)"); }); it("const inlining", () => { |