diff --git a/sv-parser-pp/src/preprocess.rs b/sv-parser-pp/src/preprocess.rs index 1b142e3..955f38f 100644 --- a/sv-parser-pp/src/preprocess.rs +++ b/sv-parser-pp/src/preprocess.rs @@ -1274,7 +1274,7 @@ mod tests { fn whitespace_directives() { let include_paths = [testfile_path("")]; let (ret, _) = preprocess( - testfile_path("test21.sv"), + testfile_path("whitespace_directives.sv"), &HashMap::new(), &include_paths, false, @@ -1283,7 +1283,7 @@ mod tests { .unwrap(); assert_eq!( ret.text(), - testfile_contents("expected/whitespace_directives") + testfile_contents("expected/whitespace_directives.sv") ); } } diff --git a/sv-parser-pp/testcases/expected/whitespace_directives b/sv-parser-pp/testcases/expected/whitespace_directives.sv similarity index 100% rename from sv-parser-pp/testcases/expected/whitespace_directives rename to sv-parser-pp/testcases/expected/whitespace_directives.sv diff --git a/sv-parser-pp/testcases/test21.sv b/sv-parser-pp/testcases/whitespace_directives.sv similarity index 100% rename from sv-parser-pp/testcases/test21.sv rename to sv-parser-pp/testcases/whitespace_directives.sv