Skip to content

Commit 40e1db9

Browse files
committed
fix: small refactor
Signed-off-by: Andrew Steurer <94206073+asteurer@users.noreply.github.com>
1 parent 4b82f3f commit 40e1db9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ mod tests {
158158
.args(["--mod", self.path])
159159
.args(["-o", self.wasm_path.to_str().unwrap()]);
160160

161-
if let Some(path) = go.as_ref() {
162-
build_cmd.args(["--go", path.to_str().unwrap()]);
161+
if let Some(go_path) = go.as_ref() {
162+
build_cmd.args(["--go", go_path.to_str().unwrap()]);
163163
}
164164

165165
let build_output = build_cmd.output().expect(&format!(

0 commit comments

Comments
 (0)