diff --git a/compiler/base/cargo-wasm b/compiler/base/cargo-wasm index 692ebb9d..1220673e 100755 --- a/compiler/base/cargo-wasm +++ b/compiler/base/cargo-wasm @@ -14,7 +14,7 @@ while (( "$#" )); do shift output="$1" else - args+="$1" + args+=("$1") fi shift diff --git a/compiler/base/orchestrator/src/coordinator.rs b/compiler/base/orchestrator/src/coordinator.rs index c47782c8..46d5f09d 100644 --- a/compiler/base/orchestrator/src/coordinator.rs +++ b/compiler/base/orchestrator/src/coordinator.rs @@ -3245,7 +3245,7 @@ mod tests { }; let response = coordinator.execute(request).await.unwrap(); - assert!(response.success, "({tests:?}), stderr: {}", response.stderr,); + assert!(response.success, "({tests:?}), stderr: {}", response.stderr); assert_contains!(response.stderr, expected); coordinator.shutdown().await?;