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