diff options
-rw-r--r-- | cli/tests/integration/coverage_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/integration/coverage_tests.rs b/cli/tests/integration/coverage_tests.rs index 87ed655b8..27e072418 100644 --- a/cli/tests/integration/coverage_tests.rs +++ b/cli/tests/integration/coverage_tests.rs @@ -45,7 +45,7 @@ fn error_if_invalid_cache() { let mod_temp_path = deno_dir_path.join("mod.ts"); let mod_test_temp_path = deno_dir_path.join("mod.test.ts"); - // Write the inital mod.ts file + // Write the initial mod.ts file std::fs::copy(mod_before_path, &mod_temp_path).unwrap(); // And the test file std::fs::copy(mod_test_path, mod_test_temp_path).unwrap(); |