Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vavsab committed Jun 3, 2022
1 parent 176ee2a commit 567edc5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tunnel_virtual_networks_test.go
Expand Up @@ -94,8 +94,8 @@ func TestCreateTunnelVirtualNetwork(t *testing.T) {

tunnel, err := client.CreateTunnelVirtualNetwork(context.Background(), TunnelVirtualNetworkCreateParams{
AccountID: testAccountID,
VnetName: "us-east-1-vpc",
IsDefault: BoolPtr(true),
Name: "us-east-1-vpc",
IsDefault: true,
Comment: "Staging VPC for data science",
})

Expand Down Expand Up @@ -147,7 +147,7 @@ func TestUpdateTunnelVirtualNetwork(t *testing.T) {
tunnel, err := client.UpdateTunnelVirtualNetwork(context.Background(), TunnelVirtualNetworkUpdateParams{
AccountID: testAccountID,
VnetID: "f70ff985-a4ef-4643-bbbc-4a0ed4fc8415",
VnetName: "us-east-1-vpc",
Name: "us-east-1-vpc",
IsDefaultNetwork: BoolPtr(true),
Comment: "Staging VPC for data science",
})
Expand Down

0 comments on commit 567edc5

Please sign in to comment.