Skip to content

Commit

Permalink
Fixed ZPA latitude and longitude coordinates in test
Browse files Browse the repository at this point in the history
  • Loading branch information
willguibr committed May 1, 2024
1 parent 301ed8b commit 3088158
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ func TestAppConnectorGroup(t *testing.T) {
Description: name,
Enabled: true,
CityCountry: "San Jose, US",
Latitude: "37.3382082",
Longitude: "-121.8863286",
Latitude: "37.33874",
Longitude: "-121.8852525",
Location: "San Jose, CA, USA",
UpgradeDay: "SUNDAY",
UpgradeTimeInSecs: "66600",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ func TestProvisiongKeyConnectorGroup(t *testing.T) {
Description: appConnGroupName,
Enabled: true,
CityCountry: "San Jose, US",
Latitude: "37.3382082",
Longitude: "-121.8863286",
Latitude: "37.33874",
Longitude: "-121.8852525",
Location: "San Jose, CA, USA",
UpgradeDay: "SUNDAY",
UpgradeTimeInSecs: "66600",
Expand Down
4 changes: 2 additions & 2 deletions zpa/services/servergroup/zpa_server_group_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ func TestServerGroup(t *testing.T) {
Description: name,
Enabled: true,
CityCountry: "San Jose, US",
Latitude: "37.3382082",
Longitude: "-121.8863286",
Latitude: "37.33874",
Longitude: "-121.8852525",
Location: "San Jose, CA, USA",
UpgradeDay: "SUNDAY",
UpgradeTimeInSecs: "66600",
Expand Down
6 changes: 3 additions & 3 deletions zpa/services/serviceedgegroup/zpa_service_edge_group_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ func TestServiceEdgeGroup_Create(t *testing.T) {
Name: name,
Description: name,
Enabled: true,
Latitude: "37.3861",
Longitude: "-122.0839",
Location: "Mountain View, CA",
Latitude: "37.33874",
Longitude: "-121.8852525",
Location: "San Jose, CA, USA",
IsPublic: "TRUE",
UpgradeDay: "SUNDAY",
UpgradeTimeInSecs: "66600",
Expand Down

0 comments on commit 3088158

Please sign in to comment.