Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_go
/
45e341cd7ffcc31db0cb337eb70cc08c13e957f2
/
.
/
tests
/
bcr
/
wrap_test.go
blob: 2fd19f5d544067c3c4a5d2d0734fe274e2f902e4 [
file
]
package main
import (
"runtime"
"strings"
"testing"
)
func TestSdkVersion(t *testing.T) {
if !strings.Contains(runtime.Version(), "1.25.0") {
t.Fatal("Incorrect toolchain version", runtime.Version())
}
}