Skip to content

Commit

Permalink
chore: clippy pls
Browse files Browse the repository at this point in the history
  • Loading branch information
iamwacko committed Feb 16, 2024
1 parent 75c39ee commit 45a6d67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synth/tests/docs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 45a6d67

Please sign in to comment.