From 150578099181fb3016cde7a517297d7adaedc7b4 Mon Sep 17 00:00:00 2001 From: Keegan Campbell Date: Thu, 1 Dec 2022 16:31:54 -0800 Subject: [PATCH] Tweak error message in provider_utils.go (#1395) --- github/provider_utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github/provider_utils.go b/github/provider_utils.go index 770512ee50..6c0e418d27 100644 --- a/github/provider_utils.go +++ b/github/provider_utils.go @@ -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 }