diff options
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, }); |