aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGravatar Dylan Conway <35280289+dylan-conway@users.noreply.github.com> 2023-04-20 16:35:01 -0700
committerGravatar GitHub <noreply@github.com> 2023-04-20 16:35:01 -0700
commit94cd68d7a69155fa55fd02a398e087e4e7eeaed0 (patch)
treef3a444feb2e13217629fb296d584f03ef8ca2f73 /test
parent6d5378566afc723e9c32b8059320fe1a8c91d354 (diff)
downloadbun-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.js2
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", () => {