Skip to content

Commit

Permalink
fix: TestAccIssueAlertResource_MigrateFromPluginSDK
Browse files Browse the repository at this point in the history
  • Loading branch information
jianyuan authored Jul 21, 2024
1 parent 6496f56 commit 5b61686
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/provider/resource_issue_alert_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func TestAccIssueAlertResource(t *testing.T) {
rn := "sentry_issue_alert.test"
team := acctest.RandomWithPrefix("tf-team")
project := acctest.RandomWithPrefix("tf-project")
alert := acctest.RandomWithPrefix("tf-issue-alert")
alert := acctest.RandomWithPrefix("tf-issue-alert-with-a-very-looooong-name-greater-than-64-characters")
var alertId string

check := func(alert string) resource.TestCheckFunc {
Expand Down Expand Up @@ -74,7 +74,7 @@ func TestAccIssueAlertResource_MigrateFromPluginSDK(t *testing.T) {
rn := "sentry_issue_alert.test"
team := acctest.RandomWithPrefix("tf-team")
project := acctest.RandomWithPrefix("tf-project")
alert := acctest.RandomWithPrefix("tf-issue-alert-with-a-very-looooong-name-greater-than-64-characters")
alert := acctest.RandomWithPrefix("tf-issue-alert")
var alertId string

resource.Test(t, resource.TestCase{
Expand Down

1 comment on commit 5b61686

@JParisFerrer
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry! I definitely intended to edit TestAccIssueAlertResource and not the migration test, thanks for the quick fix!

Please sign in to comment.