Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
annawinkler committed May 13, 2022
1 parent ef5fda7 commit 119cf62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion helper_test.go
Expand Up @@ -393,7 +393,7 @@ func createOAuthToken(t *testing.T, client *Client, org *Organization) (*OAuthTo
func createOrganization(t *testing.T, client *Client) (*Organization, func()) {
ctx := context.Background()
org, err := client.Organizations.Create(ctx, OrganizationCreateOptions{
Name: String("tst-" + randomString(t)),
Name: String("org-" + randomString(t)), // Max of 40 chars
Email: String(fmt.Sprintf("%s@tfe.local", randomString(t))),
})
if err != nil {
Expand Down
4 changes: 2 additions & 2 deletions registry_provider_platform_integration_test.go
Expand Up @@ -19,7 +19,7 @@ func TestRegistryProviderPlatformsCreate(t *testing.T) {
provider, providerTestCleanup := createPrivateRegistryProvider(t, client, nil)
defer providerTestCleanup()

version, versionCleanup := createRegistryProviderVersion(t, client, nil)
version, versionCleanup := createRegistryProviderVersion(t, client, provider)
defer versionCleanup()

versionID := RegistryProviderVersionID{
Expand Down Expand Up @@ -172,7 +172,7 @@ func TestRegistryProviderPlatformsDelete(t *testing.T) {
provider, providerCleanup := createPrivateRegistryProvider(t, client, nil)
defer providerCleanup()

version, versionCleanup := createRegistryProviderVersion(t, client, nil)
version, versionCleanup := createRegistryProviderVersion(t, client, provider)
defer versionCleanup()

providerID := RegistryProviderID{
Expand Down

0 comments on commit 119cf62

Please sign in to comment.