Skip to content

Commit

Permalink
imports ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
punkerpunker committed Jan 31, 2025
1 parent d7898e2 commit a7259f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/host/internal/sriov/sriov_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ var _ = Describe("SRIOV", func() {
hostMock.EXPECT().GetNetDevLinkSpeed("enp216s0f0np0").Return("100000 Mb/s")
hostMock.EXPECT().GetNetDevLinkAdminState("enp216s0f0np0").Return("up")
hostMock.EXPECT().GetNetDevNodeGUID("0000:d8:00.2").Return("guid1")
hostMock.EXPECT().GetVfGUID("0000:d8:00.2", "enp216s0f0np0", 0).Return("", nil)
hostMock.EXPECT().GetVfGUID("0000:d8:00.2", "enp216s0f0np0", 0).Return(net.HardwareAddr{}, nil)
storeManagerMode.EXPECT().LoadPfsStatus("0000:d8:00.0").Return(nil, false, nil)

dputilsLibMock.EXPECT().IsSriovPF("0000:d8:00.0").Return(true)
Expand Down
2 changes: 1 addition & 1 deletion pkg/host/mock/mock_host.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a7259f6

Please sign in to comment.