diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-03-05 00:26:00 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-04 14:26:00 +0100 |
commit | 30682cf74fa039d3493c74101dca2dbb3a8d49b6 (patch) | |
tree | 7e30b2a83822f0e8832883156eaa1ff7d1adc6ab /cli/source_maps.rs | |
parent | 70fe1f9fd3b6eceb39c4324cba668bf069e04f91 (diff) |
Migrate internal bundles to System (#4233)
Diffstat (limited to 'cli/source_maps.rs')
-rw-r--r-- | cli/source_maps.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/source_maps.rs b/cli/source_maps.rs index 9e29e554c..6cf5bfbbd 100644 --- a/cli/source_maps.rs +++ b/cli/source_maps.rs @@ -389,7 +389,7 @@ mod tests { assert_eq!(actual.message, "TypeError: baz"); // Because this is accessing the live bundle, this test might be more fragile assert_eq!(actual.frames.len(), 1); - assert!(actual.frames[0].script_name.ends_with("/dom_types.ts")); + assert_eq!(actual.frames[0].script_name, "$deno$/io.ts"); } #[test] |