diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2021-07-03 16:10:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-03 23:10:39 +0800 |
commit | 668f96623c745a4255766fe5595f1a95052afb77 (patch) | |
tree | 0b16b7875bb367a0ce4a89d52c9b736b88665744 /test | |
parent | 1b745494ce12840176439b947acefbd63aa9d5d2 (diff) | |
download | tracifyjs-668f96623c745a4255766fe5595f1a95052afb77.tar.gz tracifyjs-668f96623c745a4255766fe5595f1a95052afb77.zip |
tweak `beautify` output (#5044)
Diffstat (limited to 'test')
-rw-r--r-- | test/compress/drop-unused.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/compress/drop-unused.js b/test/compress/drop-unused.js index 015dec92..4c2ffece 100644 --- a/test/compress/drop-unused.js +++ b/test/compress/drop-unused.js @@ -795,9 +795,9 @@ issue_1656: { beautify: true, } input: { - for(var a=0;;); + for (var a=0;;); } - expect_exact: "for (;;) ;" + expect_exact: "for (;;);" } issue_1709: { @@ -1110,7 +1110,7 @@ issue_1838: { } expect_exact: [ "function f() {", - " for (a; c; ) ;", + " for (a; c; );", "}", ] } |