From 45a6d67cfc81283509c677bb870fefc6b74897c0 Mon Sep 17 00:00:00 2001 From: iamawacko Date: Fri, 16 Feb 2024 12:58:58 -0800 Subject: [PATCH] chore: clippy pls --- synth/tests/docs.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/synth/tests/docs.rs b/synth/tests/docs.rs index 4c2cb426..0cd72ec5 100644 --- a/synth/tests/docs.rs +++ b/synth/tests/docs.rs @@ -26,12 +26,12 @@ async fn PATH_IDENT() -> Result<()> { let tmp = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tmp"); let tmp = tmp.as_path(); - fs::create_dir_all(&tmp)?; + fs::create_dir_all(tmp)?; env::set_current_dir(tmp)?; let path = Path::new("../").join(path); let ns = get_ns_dir(tmp, &path); - fs::create_dir_all(&ns.join("scenarios"))?; + fs::create_dir_all(ns.join("scenarios"))?; let mut expects = HashSet::new(); let mut scenarios = HashSet::new();