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:
parent
5d0fe4caff
commit
e53e70c371
1 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue