Skip to content

Commit

Permalink
Change wasm file extension
Browse files Browse the repository at this point in the history
  • Loading branch information
johnlanda committed Jul 12, 2023
1 parent c28107d commit 3ecaeca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func TestWASMRemote(t *testing.T) {
},
// extra files loaded after startup
testcontainers.ContainerFile{
HostFilePath: fmt.Sprintf("%s/wasm_add_header.go.wasm", hostWASMDir),
HostFilePath: fmt.Sprintf("%s/wasm_add_header.wasm", hostWASMDir),
ContainerFilePath: "/usr/share/nginx/html/wasm_add_header.wasm",
FileMode: 777,
})
Expand Down Expand Up @@ -166,7 +166,7 @@ func TestWASMRemote(t *testing.T) {
},
"URI": fmt.Sprintf("%s/wasm_add_header.wasm", uri),
},
"SHA256": sha256FromFile(t, fmt.Sprintf("%s/wasm_add_header.go.wasm", hostWASMDir)),
"SHA256": sha256FromFile(t, fmt.Sprintf("%s/wasm_add_header.wasm", hostWASMDir)),
},
},
},
Expand Down

0 comments on commit 3ecaeca

Please sign in to comment.