1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-07 06:46:59 -05:00

test: use correct test file name

This commit is contained in:
Ben Heidemann 2024-11-06 09:54:01 +00:00
parent 5d0fe4caff
commit e53e70c371

View file

@ -229,7 +229,7 @@ mod tests {
parse_and_then(source_code, |program| {
let line_directives = parse_range_ignore_directives(
true,
&Url::from_str("test.ts").unwrap(),
&Url::from_str(TEST_FILE_NAME).unwrap(),
&program,
);
@ -251,7 +251,7 @@ mod tests {
parse_and_then(source_code, |program| {
let line_directives = parse_range_ignore_directives(
true,
&Url::from_str("test.ts").unwrap(),
&Url::from_str(TEST_FILE_NAME).unwrap(),
&program,
);
@ -276,7 +276,7 @@ mod tests {
parse_and_then(source_code, |program| {
let line_directives = parse_range_ignore_directives(
true,
&Url::from_str("test.ts").unwrap(),
&Url::from_str(TEST_FILE_NAME).unwrap(),
&program,
);