Skip to content

Commit

Permalink
Tweak error message in provider_utils.go (integrations#1395)
Browse files Browse the repository at this point in the history
  • Loading branch information
kfcampbell authored and kazaker committed Dec 28, 2022
1 parent 401b526 commit 1505780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion github/provider_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func testAccCheckOrganization() error {
return err
}
if !meta.(*Owner).IsOrganization {
return fmt.Errorf("GITHUB_OWNER %q is a user, not an organization", meta.(*Owner).name)
return fmt.Errorf("configured owner %q is a user, not an organization", meta.(*Owner).name)
}
return nil
}
Expand Down

0 comments on commit 1505780

Please sign in to comment.