We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b9df41 commit d2fe287Copy full SHA for d2fe287
vhdl_lang/src/project.rs
@@ -294,7 +294,7 @@ mod tests {
294
let root = tempfile::tempdir().unwrap();
295
let vhdl_file_path = root.path().join("file.vhd");
296
std::fs::write(
297
- &vhdl_file_path,
+ vhdl_file_path,
298
"
299
library missing;
300
@@ -358,7 +358,7 @@ end architecture;
358
359
let vhdl_file_path1 = root.path().join("file.vhd");
360
361
- &vhdl_file_path1,
+ vhdl_file_path1,
362
363
package pkg is
364
end package;
@@ -368,7 +368,7 @@ end package;
368
369
let vhdl_file_path2 = root.path().join("use_file.vhd");
370
371
- &vhdl_file_path2,
+ vhdl_file_path2,
372
373
library lib1;
374
use lib1.pkg.all;
0 commit comments