Skip to content

Commit

Permalink
also try putting space into working directory name
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed May 11, 2022
1 parent 493ca78 commit 5565028
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/smoke.rs
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,8 @@ impl HProject {

let guard = ONCE.lock();

let td = TempDir::new("xargo").chain_err(|| "couldn't create a temporary directory")?;
// Put a space into the working directory name to also test that case.
let td = TempDir::new("xar go").chain_err(|| "couldn't create a temporary directory")?;

xargo()?
.args(&["init", "-q", "--lib", "--vcs", "none", "--name", "host"])
Expand Down

0 comments on commit 5565028

Please sign in to comment.