diff --git a/internal/provider/resource_branch.go b/internal/provider/resource_branch.go index 47f133d..2faabd3 100644 --- a/internal/provider/resource_branch.go +++ b/internal/provider/resource_branch.go @@ -222,5 +222,5 @@ func resourceBranchImport(ctx context.Context, d *schema.ResourceData, meta inte } func isValidBranchID(s string) bool { - return strings.HasPrefix("br-", s) + return strings.HasPrefix(s, "br-") }