diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-04-09 23:35:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 23:35:29 +0200 |
commit | 1c7217e3909c72135020ff415e61644e20e1f62c (patch) | |
tree | e7fc2943aec824a3755dc627c7e10fa4f821a1b5 /cli/tests/integration_tests.rs | |
parent | 0fd1fb9329512258064c3c04e3c2d990f3748834 (diff) |
chore: upgrade dependencies (#10094)
This commit upgrades:
- swc_ecmascript
- swc_bundler
- deno_doc
- deno_lint
- dprint-plugin-typescript
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index dbebd11f1..310cb3289 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -4024,14 +4024,14 @@ console.log("finish"); itest!(stdin { args: "lint --unstable -", - input: Some("let a: any;"), + input: Some("let _a: any;"), output: "lint/expected_from_stdin.out", exit_code: 1, }); itest!(stdin_json { args: "lint --unstable --json -", - input: Some("let a: any;"), + input: Some("let _a: any;"), output: "lint/expected_from_stdin_json.out", exit_code: 1, }); |