Skip to content

Commit f77185f

Browse files
committed
Fix "even if IPv4 comes first" test to have IPv4 first
Signed-off-by: Sam Edwards <[email protected]>
1 parent 88a8496 commit f77185f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/cri/sbserver/sandbox_run_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ func TestSelectPodIP(t *testing.T) {
145145
},
146146
{
147147
desc: "ipv6 should be picked even if ipv4 comes first",
148-
ips: []string{"2001:db8:85a3::8a2e:370:7334", "192.168.17.43"},
148+
ips: []string{"192.168.17.43", "2001:db8:85a3::8a2e:370:7334"},
149149
expectedIP: "2001:db8:85a3::8a2e:370:7334",
150150
expectedAdditionalIPs: []string{"192.168.17.43"},
151151
pref: "ipv6",

pkg/cri/server/sandbox_run_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ func TestSelectPodIP(t *testing.T) {
293293
},
294294
{
295295
desc: "ipv6 should be picked even if ipv4 comes first",
296-
ips: []string{"2001:db8:85a3::8a2e:370:7334", "192.168.17.43"},
296+
ips: []string{"192.168.17.43", "2001:db8:85a3::8a2e:370:7334"},
297297
expectedIP: "2001:db8:85a3::8a2e:370:7334",
298298
expectedAdditionalIPs: []string{"192.168.17.43"},
299299
pref: "ipv6",

0 commit comments

Comments
 (0)