diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2022-03-10 23:29:14 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-10 23:29:14 +0900 |
commit | 3c11768aab2f5fba1a5815e8287130658887f70e (patch) | |
tree | 695192c99ce989a853019ce64ced7a440a73e4d2 /cli/compat/esm_resolver.rs | |
parent | 2e30112e62a0a6ade6b917156fe653100998a480 (diff) |
v1.19.3
Diffstat (limited to 'cli/compat/esm_resolver.rs')
-rw-r--r-- | cli/compat/esm_resolver.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/compat/esm_resolver.rs b/cli/compat/esm_resolver.rs index 8156aa3ee..0fdfa3881 100644 --- a/cli/compat/esm_resolver.rs +++ b/cli/compat/esm_resolver.rs @@ -1234,7 +1234,7 @@ mod tests { let cwd = testdir("basic"); let main = Url::from_file_path(cwd.join("main.js")).unwrap(); let expected = - Url::parse("https://deno.land/std@0.128.0/node/http.ts").unwrap(); + Url::parse("https://deno.land/std@0.129.0/node/http.ts").unwrap(); let actual = node_resolve("http", main.as_str(), &cwd).unwrap(); assert!(matches!(actual, ResolveResponse::Esm(_))); |