fix typo in cmd/kube-apiserver/app/options/validation_test.go

Put back test case that was dropped by mistake.

Signed-off-by: TommyStarK <thomasmilox@gmail.com>
This commit is contained in:
TommyStarK 2022-11-16 19:25:31 +01:00
parent 47fdbd97d3
commit 44c94f98b6

View File

@ -113,6 +113,11 @@ func TestClusterServiceIPRange(t *testing.T) {
expectErrors: false,
options: makeOptionsWithCIDRs("10.0.0.0/16", "3000::/108"),
},
{
name: "valid v6-v4 dual stack",
expectErrors: false,
options: makeOptionsWithCIDRs("3000::/108", "10.0.0.0/16"),
},
}
for _, tc := range testCases {