Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vendor mod and test fixes #362

Merged
merged 1 commit into from
Jul 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ require (
cloud.google.com/go v0.71.0 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/hashicorp/terraform-plugin-sdk v1.7.0
github.com/heimweh/go-pagerduty v0.0.0-20210605042823-5a9026c44cb2
github.com/heimweh/go-pagerduty v0.0.0-20210727215404-3da4ffdbaa95
go.mongodb.org/mongo-driver v1.7.0 // indirect
golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd // indirect
google.golang.org/api v0.35.0 // indirect
google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb // indirect
Expand Down
82 changes: 82 additions & 0 deletions go.sum

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pagerduty/resource_pagerduty_user_contact_method_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func TestAccPagerDutyUserContactMethodPhone_Basic(t *testing.T) {
),
},
{
Config: testAccCheckPagerDutyUserContactMethodPhoneConfig(usernameUpdated, emailUpdated, "8669351337"),
Config: testAccCheckPagerDutyUserContactMethodPhoneConfig(usernameUpdated, emailUpdated, "8019351337"),
Check: resource.ComposeTestCheckFunc(
testAccCheckPagerDutyUserContactMethodExists("pagerduty_user_contact_method.foo"),
),
Expand Down Expand Up @@ -208,7 +208,7 @@ resource "pagerduty_user_contact_method" "foo" {
user_id = pagerduty_user.foo.id
type = "sms_contact_method"
country_code = "+1"
address = "8448003889"
address = "8458003889"
label = "%[1]v"
}
`, username, email)
Expand Down
4 changes: 2 additions & 2 deletions pagerduty/resource_pagerduty_user_notification_rule_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ resource "pagerduty_user_contact_method" "email_contact_method" {
resource "pagerduty_user_contact_method" "sms_contact_method" {
user_id = pagerduty_user.foo.id
type = "sms_contact_method"
address = "8005551234"
address = "8015541234"
country_code = "+1"
label = "Work"
}
Expand All @@ -123,7 +123,7 @@ resource "pagerduty_user_contact_method" "phone_contact_method" {
user_id = pagerduty_user.foo.id
type = "phone_contact_method"
country_code = "+1"
address = "8005551234"
address = "8015541234"
label = "Work"
}

Expand Down
15 changes: 15 additions & 0 deletions vendor/github.com/go-stack/stack/.travis.yml

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

21 changes: 21 additions & 0 deletions vendor/github.com/go-stack/stack/LICENSE.md

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

38 changes: 38 additions & 0 deletions vendor/github.com/go-stack/stack/README.md

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

1 change: 1 addition & 0 deletions vendor/github.com/go-stack/stack/go.mod

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

Loading