ppTests mv escaped_identifier

This commit is contained in:
damc 2022-07-21 10:56:54 +02:00
parent 93f305c448
commit bed9b08f93
3 changed files with 2 additions and 2 deletions

View File

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