Skip to content

Commit 0cfc1ed

Browse files
CFSworksthaJeztah
authored andcommitted
Fix "even if IPv4 comes first" test to have IPv4 first
Signed-off-by: Sam Edwards <[email protected]> (cherry picked from commit f77185f) Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 53d1fd0 commit 0cfc1ed

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
@@ -135,7 +135,7 @@ func TestSelectPodIP(t *testing.T) {
135135
expectedAdditionalIPs: []string{"2001:db8:85a3::8a2e:370:7334"},
136136
},
137137
"ipv6 should be picked even if ipv4 comes first": {
138-
ips: []string{"2001:db8:85a3::8a2e:370:7334", "192.168.17.43"},
138+
ips: []string{"192.168.17.43", "2001:db8:85a3::8a2e:370:7334"},
139139
expectedIP: "2001:db8:85a3::8a2e:370:7334",
140140
expectedAdditionalIPs: []string{"192.168.17.43"},
141141
pref: "ipv6",

pkg/cri/server/sandbox_run_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ func TestSelectPodIP(t *testing.T) {
274274
expectedAdditionalIPs: []string{"2001:db8:85a3::8a2e:370:7334"},
275275
},
276276
"ipv6 should be picked even if ipv4 comes first": {
277-
ips: []string{"2001:db8:85a3::8a2e:370:7334", "192.168.17.43"},
277+
ips: []string{"192.168.17.43", "2001:db8:85a3::8a2e:370:7334"},
278278
expectedIP: "2001:db8:85a3::8a2e:370:7334",
279279
expectedAdditionalIPs: []string{"192.168.17.43"},
280280
pref: "ipv6",

0 commit comments

Comments
 (0)