diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-06-26 16:59:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-26 16:59:08 -0400 |
commit | 42464e922d0bc435f32cf9d2707537a9558271fb (patch) | |
tree | c3f837c960f5ec6d6d6a81fd79465229a210e877 /cli/tests/integration_tests.rs | |
parent | 3eec13fa0dfbc7fc4512102f8fe5277cdcbfb2c2 (diff) |
'Compile' messages changed to 'Check' messages (#6504)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r-- | cli/tests/integration_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs index 239d1ca52..8f29d8307 100644 --- a/cli/tests/integration_tests.rs +++ b/cli/tests/integration_tests.rs @@ -583,7 +583,7 @@ fn ts_dependency_recompilation() { let stderr_output = std::str::from_utf8(&output.stderr).unwrap().trim(); assert!(stdout_output.ends_with("foo")); - assert!(stderr_output.starts_with("Compile")); + assert!(stderr_output.starts_with("Check")); // Overwrite contents of b.ts and run again std::fs::write( |