aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
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", () => {