Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
Rename more
Browse files Browse the repository at this point in the history
  • Loading branch information
anuraaga committed Nov 17, 2023
1 parent ffb03e2 commit 7665d78
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions internal/version/testdata/go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module github.com/tetratelabs/wazero/internal/version/testdata
module github.com/wasilibs/wazerox/internal/version/testdata

go 1.19

require github.com/tetratelabs/wazero v0.0.0-20220818123113-1948909ec0b1 // indirect
require github.com/wasilibs/wazerox v0.0.0-20220818123113-1948909ec0b1 // indirect

replace github.com/tetratelabs/wazero => ../../..
replace github.com/wasilibs/wazerox => ../../..
2 changes: 1 addition & 1 deletion internal/version/testdata/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package main

// Force importing wazero here, so that we can see the actual wazero version in the main_test.go.
import (
_ "github.com/tetratelabs/wazero/internal/version"
_ "github.com/wasilibs/wazerox/internal/version"
)
4 changes: 2 additions & 2 deletions internal/version/testdata/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
import (
"testing"

"github.com/tetratelabs/wazero/internal/testing/require"
"github.com/tetratelabs/wazero/internal/version"
"github.com/wasilibs/wazerox/internal/testing/require"
"github.com/wasilibs/wazerox/internal/version"
)

// TestGetWazeroVersion ensures that GetWazeroVersion returns the version of wazero in the go.mod in the
Expand Down
2 changes: 1 addition & 1 deletion internal/wasmdebug/debug_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ wasm stack trace:
x.y()`)
require.Contains(t, errStr, "Go runtime stack trace:")
require.Contains(t, errStr, "goroutine ")
require.Contains(t, errStr, "wazero/internal/wasmdebug/debug_test.go")
require.Contains(t, errStr, "wazerox/internal/wasmdebug/debug_test.go")
}

// compile-time check to ensure testRuntimeErr implements runtime.Error.
Expand Down

0 comments on commit 7665d78

Please sign in to comment.