Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cf7f9d9

Browse files
authored
Added bugfix for functional tests
1 parent c9240e7 commit cf7f9d9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal/acceptance/openstack/baremetal/v1/nodes_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,8 @@ func TestNodesVirtualInterfaces(t *testing.T) {
279279

280280
client, err := clients.NewBareMetalV1Client()
281281
th.AssertNoErr(t, err)
282-
client.Microversion = "1.28" // VIFs were added in API version 1.28
282+
// VIFs were added in API version 1.28, but at least 1.38 is needed for tests to pass
283+
client.Microversion = "1.38"
283284

284285
node, err := CreateNode(t, client)
285286
th.AssertNoErr(t, err)

0 commit comments

Comments
 (0)