We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b82f3f commit 40e1db9Copy full SHA for 40e1db9
1 file changed
tests/src/lib.rs
@@ -158,8 +158,8 @@ mod tests {
158
.args(["--mod", self.path])
159
.args(["-o", self.wasm_path.to_str().unwrap()]);
160
161
- if let Some(path) = go.as_ref() {
162
- build_cmd.args(["--go", path.to_str().unwrap()]);
+ if let Some(go_path) = go.as_ref() {
+ build_cmd.args(["--go", go_path.to_str().unwrap()]);
163
}
164
165
let build_output = build_cmd.output().expect(&format!(
0 commit comments