Skip to content

Commit bb12058

Browse files
authored
Fix CI (#3712)
1 parent 45039ff commit bb12058

File tree

1 file changed

+1
-1
lines changed
  • crates/cli/src/bin/wasm-bindgen-test-runner

1 file changed

+1
-1
lines changed

crates/cli/src/bin/wasm-bindgen-test-runner/server.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ pub fn spawn(
106106
));
107107

108108
let worker_js_path = tmpdir.join("worker.js");
109-
fs::write(&worker_js_path, worker_script).context("failed to write JS file")?;
109+
fs::write(worker_js_path, worker_script).context("failed to write JS file")?;
110110

111111
js_to_execute.push_str(&format!(
112112
r#"

0 commit comments

Comments
 (0)