Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit e286dfa

Browse files
committed
don't force target-dir (cargo-miri already deconflicts that)
1 parent 4030210 commit e286dfa

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

ui_test/src/dependencies.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ pub fn build_dependencies(config: &Config) -> Result<Dependencies> {
4343
};
4444

4545
setup_command(&mut build);
46-
build
47-
.arg("--target-dir=target/test_dependencies")
48-
.arg("--message-format=json");
46+
build.arg("--message-format=json");
4947

5048
let output = build.output()?;
5149

ui_test/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ pub struct Config {
5454
pub struct DependencyBuilder {
5555
pub program: PathBuf,
5656
pub args: Vec<String>,
57-
pub envs: Vec<(String, String)>,
57+
pub envs: Vec<(String, OsString)>,
5858
}
5959

6060
#[derive(Debug)]

0 commit comments

Comments
 (0)