1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 21:50:00 -05:00

Fix test js_error_apply_source_map_2

If the project is checked out into a directory not called "deno" this
test fails.
This commit is contained in:
Ryan Dahl 2019-01-01 00:19:55 -05:00
parent 76de81358e
commit 5b9c488921

View file

@ -518,7 +518,7 @@ mod tests {
assert_eq!(actual.frames.len(), 1);
assert_eq!(actual.frames[0].line, 15);
assert_eq!(actual.frames[0].column, 16);
assert_eq!(actual.frames[0].script_name, "deno/js/util.ts");
assert!(actual.frames[0].script_name.ends_with("js/util.ts"));
}
#[test]