From aef1f4522dd485e261e1ee0cca6d92e66c446ef5 Mon Sep 17 00:00:00 2001 From: sat0ken <15720506+sat0ken@users.noreply.github.com> Date: Wed, 23 Oct 2024 06:16:24 +0900 Subject: [PATCH] fix err Signed-off-by: sat0ken <15720506+sat0ken@users.noreply.github.com> --- tests/contest/contest/src/tests/process/process_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/contest/contest/src/tests/process/process_test.rs b/tests/contest/contest/src/tests/process/process_test.rs index d54899729..942b64a43 100644 --- a/tests/contest/contest/src/tests/process/process_test.rs +++ b/tests/contest/contest/src/tests/process/process_test.rs @@ -9,7 +9,7 @@ fn create_spec() -> Result { 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")?;