diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-09-02 17:38:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-02 17:38:19 +0200 |
| commit | c84532b6d5a424694c519260f0cf407b1d8ba604 (patch) | |
| tree | b0cd78f2f851ceb8b8b92fc146e8e5d29b263505 /cli/tests/testdata/bundle | |
| parent | 77ead8af20180453aa2d0db67d7856641bd5498f (diff) | |
chore: upgrade crates (#11894)
Co-authored-by: David Sherret <dsherret@gmail.com>
Diffstat (limited to 'cli/tests/testdata/bundle')
| -rw-r--r-- | cli/tests/testdata/bundle/fixture11.out | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/tests/testdata/bundle/fixture11.out b/cli/tests/testdata/bundle/fixture11.out index d143e8723..4f333a513 100644 --- a/cli/tests/testdata/bundle/fixture11.out +++ b/cli/tests/testdata/bundle/fixture11.out @@ -2,10 +2,10 @@ function a() { console.log("a"); } var O1; -(function(O1) { - O1[O1["A"] = 0] = "A"; - O1[O1["B"] = 1] = "B"; - O1[O1["C"] = 2] = "C"; +(function(O) { + O[O["A"] = 0] = "A"; + O[O["B"] = 1] = "B"; + O[O["C"] = 2] = "C"; })(O1 || (O1 = { })); export { O1 as O }; |
