Skip to content

Commit d2fe287

Browse files
committed
More clippy fixes
1 parent 3b9df41 commit d2fe287

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vhdl_lang/src/project.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ mod tests {
294294
let root = tempfile::tempdir().unwrap();
295295
let vhdl_file_path = root.path().join("file.vhd");
296296
std::fs::write(
297-
&vhdl_file_path,
297+
vhdl_file_path,
298298
"
299299
library missing;
300300
@@ -358,7 +358,7 @@ end architecture;
358358
let root = tempfile::tempdir().unwrap();
359359
let vhdl_file_path1 = root.path().join("file.vhd");
360360
std::fs::write(
361-
&vhdl_file_path1,
361+
vhdl_file_path1,
362362
"
363363
package pkg is
364364
end package;
@@ -368,7 +368,7 @@ end package;
368368

369369
let vhdl_file_path2 = root.path().join("use_file.vhd");
370370
std::fs::write(
371-
&vhdl_file_path2,
371+
vhdl_file_path2,
372372
"
373373
library lib1;
374374
use lib1.pkg.all;

0 commit comments

Comments
 (0)