ppTests mv ifndef_undefined

This commit is contained in:
damc 2022-07-21 12:19:05 +02:00
parent c78276b906
commit a3d4898ec2
3 changed files with 2 additions and 2 deletions

View File

@ -1191,7 +1191,7 @@ mod tests {
#[test] #[test]
fn ifndef_undefined() { fn ifndef_undefined() {
let (ret, _) = preprocess( let (ret, _) = preprocess(
testfile_path("test18.sv"), testfile_path("ifndef_undefined.sv"),
&HashMap::new(), &HashMap::new(),
&[] as &[String], &[] as &[String],
false, false,
@ -1200,7 +1200,7 @@ mod tests {
.unwrap(); .unwrap();
assert_eq!( assert_eq!(
ret.text(), ret.text(),
testfile_contents("expected/ifndef_undefined") testfile_contents("expected/ifndef_undefined.sv")
); );
} }