ppTests mv whitespace_directives

This commit is contained in:
damc 2022-07-21 12:31:44 +02:00
parent 12d43f8373
commit 493fa21594
3 changed files with 2 additions and 2 deletions

View File

@ -1274,7 +1274,7 @@ mod tests {
fn whitespace_directives() { fn whitespace_directives() {
let include_paths = [testfile_path("")]; let include_paths = [testfile_path("")];
let (ret, _) = preprocess( let (ret, _) = preprocess(
testfile_path("test21.sv"), testfile_path("whitespace_directives.sv"),
&HashMap::new(), &HashMap::new(),
&include_paths, &include_paths,
false, false,
@ -1283,7 +1283,7 @@ mod tests {
.unwrap(); .unwrap();
assert_eq!( assert_eq!(
ret.text(), ret.text(),
testfile_contents("expected/whitespace_directives") testfile_contents("expected/whitespace_directives.sv")
); );
} }
} }