Skip to content

Commit

Permalink
Fix null pointer crash in the acceptance test
Browse files Browse the repository at this point in the history
  • Loading branch information
alexott committed Oct 17, 2024
1 parent 0dccf90 commit 6e50bff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func TestAccNotificationsCreation(t *testing.T) {
}
}
resource "databricks_notification_destination" "notification" {
resource "databricks_notification_destination" "slack_notification" {
display_name = "slack notification destination"
config {
slack {
Expand All @@ -55,7 +55,7 @@ func TestAccNotificationsCreation(t *testing.T) {
}
data "databricks_notification_destinations" "this" {
depends_on = [databricks_notification_destination.email_notification, databricks_notification_destination.notification]
depends_on = [databricks_notification_destination.email_notification, databricks_notification_destination.slack_notification]
}
`,
Check: CheckDataSourceNotificationsPopulated(t),
Expand Down

0 comments on commit 6e50bff

Please sign in to comment.