We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dae870 commit 4f2ef34Copy full SHA for 4f2ef34
pkg/compatibility/compatibility_test.go
@@ -214,6 +214,21 @@ func TestIsRHCOSCompatible(t *testing.T) {
214
testMachineVersion: "4.16.0-rc.1",
215
expectedOutput: true,
216
},
217
+ { // Test Case #8 - OCP 4.20.2 accepts RHCOS version 4.20.2, pass
218
+ testOCPVersion: "4.20.2",
219
+ testMachineVersion: "4.20.2",
220
+ expectedOutput: true,
221
+ },
222
+ { // Test Case #9 - OCP 4.20.2 accepts RHCOS version 4.20.0, pass
223
224
+ testMachineVersion: "4.20.0",
225
226
227
+ { // Test Case #10 - OCP 4.20.0 accepts RHCOS version 4.20.2, pass
228
+ testOCPVersion: "4.20.0",
229
230
231
232
}
233
234
for _, tc := range testCases {
0 commit comments