Skip to content

Commit 299424a

Browse files
authored
Fix Go tests for 211 (#2777)
Go 1.17 came out and broke the 211 tests by using golang:1. Set max go version for 211
1 parent d322f0e commit 299424a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

jetbrains-ultimate/tst/software/aws/toolkits/jetbrains/utils/rules/GoCodeInsightTestFixtureRule.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,9 @@ fun runGoModTidy(goModFile: VirtualFile) {
101101
}
102102

103103
fun compatibleGoForIde() = when (ApplicationInfo.getInstance().build.baselineVersion) {
104-
202 -> "1.14.15" // TODO: FIX_WHEN_MIN_IS_202
105-
203 -> "1.15.14" // TODO: FIX_WHEN_MIN_IS_203
104+
202 -> "1.14.15" // TODO: FIX_WHEN_MIN_IS_203
105+
203 -> "1.15.14" // TODO: FIX_WHEN_MIN_IS_211
106+
211 -> "1.16.6" // TODO: FIX_WHEN_MIN_IS_212
106107
else -> null
107108
}
108109

0 commit comments

Comments
 (0)