Skip to content

Commit

Permalink
Fix test binary paths in generated toml for Windows
Browse files Browse the repository at this point in the history
Co-authored-by: Blake Johnson <[email protected]>
  • Loading branch information
RossSmyth and voteblake committed Jul 24, 2024
1 parent 62effe8 commit f13dbae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tests/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@ impl ProjectBuilder {
r#"
[[bin]]
name = "{name}"
path = "{path}"
path = {path}
test = false
doc = false
"#,
name = name,
path = path.display(),
path = toml::to_string(&path).unwrap(),
)
.unwrap();

Expand Down

0 comments on commit f13dbae

Please sign in to comment.