Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cehrig committed Feb 2, 2022
1 parent 6eafe0f commit 886b14f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions magic_transit_gre_tunnel_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func TestListMagicTransitGRETunnels(t *testing.T) {
Description: "Tunnel for ISP X",
TTL: 64,
MTU: 1476,
HealthCheck: MagicTransitGRETunnelHealthcheck{
HealthCheck: &MagicTransitGRETunnelHealthcheck{
Enabled: true,
Target: "203.0.113.1",
Type: "request",
Expand Down Expand Up @@ -125,7 +125,7 @@ func TestGetMagicTransitGRETunnel(t *testing.T) {
Description: "Tunnel for ISP X",
TTL: 64,
MTU: 1476,
HealthCheck: MagicTransitGRETunnelHealthcheck{
HealthCheck: &MagicTransitGRETunnelHealthcheck{
Enabled: true,
Target: "203.0.113.1",
Type: "request",
Expand Down Expand Up @@ -190,7 +190,7 @@ func TestCreateMagicTransitGRETunnels(t *testing.T) {
Description: "Tunnel for ISP X",
TTL: 64,
MTU: 1476,
HealthCheck: MagicTransitGRETunnelHealthcheck{
HealthCheck: &MagicTransitGRETunnelHealthcheck{
Enabled: true,
Target: "203.0.113.1",
Type: "request",
Expand Down Expand Up @@ -254,7 +254,7 @@ func TestUpdateMagicTransitGRETunnel(t *testing.T) {
Description: "Tunnel for ISP X",
TTL: 64,
MTU: 1476,
HealthCheck: MagicTransitGRETunnelHealthcheck{
HealthCheck: &MagicTransitGRETunnelHealthcheck{
Enabled: true,
Target: "203.0.113.1",
Type: "request",
Expand Down Expand Up @@ -317,7 +317,7 @@ func TestDeleteMagicTransitGRETunnel(t *testing.T) {
Description: "Tunnel for ISP X",
TTL: 64,
MTU: 1476,
HealthCheck: MagicTransitGRETunnelHealthcheck{
HealthCheck: &MagicTransitGRETunnelHealthcheck{
Enabled: true,
Target: "203.0.113.1",
Type: "request",
Expand Down

0 comments on commit 886b14f

Please sign in to comment.