We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4030210 commit e286dfaCopy full SHA for e286dfa
ui_test/src/dependencies.rs
@@ -43,9 +43,7 @@ pub fn build_dependencies(config: &Config) -> Result<Dependencies> {
43
};
44
45
setup_command(&mut build);
46
- build
47
- .arg("--target-dir=target/test_dependencies")
48
- .arg("--message-format=json");
+ build.arg("--message-format=json");
49
50
let output = build.output()?;
51
ui_test/src/lib.rs
@@ -54,7 +54,7 @@ pub struct Config {
54
pub struct DependencyBuilder {
55
pub program: PathBuf,
56
pub args: Vec<String>,
57
- pub envs: Vec<(String, String)>,
+ pub envs: Vec<(String, OsString)>,
58
}
59
60
#[derive(Debug)]
0 commit comments