Skip to content

Commit

Permalink
fix: remove override from UT
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma committed May 28, 2020
1 parent 499eb07 commit e6a88ff
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions cloud/services/networkinterfaces/networkinterfaces_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -566,10 +566,9 @@ func TestReconcileNetworkInterface(t *testing.T) {
{
name: "network interface with accelerated networking successfully created",
netInterfaceSpec: Spec{
Name: "my-net-interface",
VnetName: "my-vnet",
SubnetName: "my-subnet",
AcceleratedNetworking: to.BoolPtr(true),
Name: "my-net-interface",
VnetName: "my-vnet",
SubnetName: "my-subnet",
},
expectedError: "",
expect: func(m *mock_networkinterfaces.MockClientMockRecorder,
Expand Down Expand Up @@ -604,10 +603,9 @@ func TestReconcileNetworkInterface(t *testing.T) {
{
name: "network interface without accelerated networking successfully created",
netInterfaceSpec: Spec{
Name: "my-net-interface",
VnetName: "my-vnet",
SubnetName: "my-subnet",
AcceleratedNetworking: to.BoolPtr(false),
Name: "my-net-interface",
VnetName: "my-vnet",
SubnetName: "my-subnet",
},
expectedError: "",
expect: func(m *mock_networkinterfaces.MockClientMockRecorder,
Expand Down

0 comments on commit e6a88ff

Please sign in to comment.