summaryrefslogtreecommitdiff
path: root/rust/tests
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2026-03-16 11:48:46 -0700
committerMason Reed <35282038+emesare@users.noreply.github.com>2026-03-24 18:46:48 -0700
commitd7c91093e808731bbe4fafd67daccb8776d5710e (patch)
treecf6e2ffd9a1d742bdb630e259811b1e38e4ca159 /rust/tests
parent8738e69ab2713abbeb349aa1ea990165913f18cd (diff)
[Rust] Misc project module cleanup
Diffstat (limited to 'rust/tests')
-rw-r--r--rust/tests/project.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/tests/project.rs b/rust/tests/project.rs
index 18676b2e..263dea7a 100644
--- a/rust/tests/project.rs
+++ b/rust/tests/project.rs
@@ -26,7 +26,7 @@ fn create_delete_empty() {
let project_path_received = project.path();
assert_eq!(
canonicalize(&project_path).unwrap(),
- canonicalize(project_path_received.to_string()).unwrap()
+ canonicalize(project_path_received).unwrap()
);
let project_name_received = project.name();
assert_eq!(project_name, project_name_received.as_str());