Skip to content

Commit

Permalink
fix err
Browse files Browse the repository at this point in the history
Signed-off-by: sat0ken <15720506+sat0ken@users.noreply.github.com>
  • Loading branch information
sat0ken committed Oct 22, 2024
1 parent 78dfb54 commit aef1f45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/contest/contest/src/tests/process/process_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fn create_spec() -> Result<Spec> {
let spec = SpecBuilder::default().process(
ProcessBuilder::default()
.cwd("/test")
.env(vec!["testa", "valuea", "testb", "123"])
.env(vec!["testa".to_string(), "valuea".to_string(), "testb".to_string(), "123".to_string()])
.build()
.expect("error in creating process config"),
).build().context("failed to build spec")?;
Expand Down

0 comments on commit aef1f45

Please sign in to comment.