Skip to content

Commit 9fe9877

Browse files
committed
fix: remove unstable version output from test
Signed-off-by: Christian Stewart <[email protected]>
1 parent 88f915c commit 9fe9877

File tree

4 files changed

+2
-11
lines changed

4 files changed

+2
-11
lines changed

compliance/tests/package_import_runtime/actual.log

Lines changed: 0 additions & 8 deletions
This file was deleted.

compliance/tests/package_import_runtime/expected.log

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
GOOS: js
22
GOARCH: wasm
3-
Version: go1.22.0
43
NumCPU: 12
54
GOMAXPROCS(-1): 1
65
GOMAXPROCS(0): 1

compliance/tests/package_import_runtime/package_import_runtime.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ func main() {
66
// Test basic runtime functions
77
println("GOOS:", runtime.GOOS)
88
println("GOARCH:", runtime.GOARCH)
9-
println("Version:", runtime.Version())
9+
// println("Version:", runtime.Version()) - not stable for the test (go.mod may change)
1010
println("NumCPU:", runtime.NumCPU())
1111

1212
// Test GOMAXPROCS

compliance/tests/package_import_runtime/package_import_runtime.gs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export async function main(): Promise<void> {
99
// Test basic runtime functions
1010
console.log("GOOS:", runtime.GOOS)
1111
console.log("GOARCH:", runtime.GOARCH)
12-
console.log("Version:", runtime.Version())
12+
// println("Version:", runtime.Version()) - not stable for the test (go.mod may change)
1313
console.log("NumCPU:", runtime.NumCPU())
1414

1515
// Test GOMAXPROCS

0 commit comments

Comments
 (0)