aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--main_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main_test.go b/main_test.go
index eda829dbb..2df40b0e2 100644
--- a/main_test.go
+++ b/main_test.go
@@ -398,7 +398,7 @@ func testSetupFunc() func(env *testscript.Env) error {
goVersion := runtime.Version()
goVersion = strings.TrimPrefix(goVersion, "go")
- if !strings.HasSuffix(goVersion, ".0") {
+ if strings.HasPrefix(goVersion, "1.20") {
// Strip patch version.
goVersion = goVersion[:strings.LastIndex(goVersion, ".")]
}