Skip to content

Commit

Permalink
Write test file to /tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
eikek committed Jul 17, 2024
1 parent 591086f commit 640f2f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ fn write_and_read_config() {
slug: "projecta".into(),
},
};
let target: PathBuf = "test.conf".into();
let target: PathBuf = "/tmp/test.conf".into();
data.write(&target).unwrap();
let from_file = RenkuProjectConfig::read(&target).unwrap();
std::fs::remove_file(&target).unwrap();
Expand Down

0 comments on commit 640f2f4

Please sign in to comment.