Skip to content

Commit 73f899e

Browse files
committed
Fix org read tests for TFE
1 parent 15126cd commit 73f899e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

organization_integration_test.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ func TestOrganizationsRead(t *testing.T) {
196196
assert.NotEmpty(t, org.CreatedAt)
197197
// By default accounts are in the free tier and are not in a trial
198198
assert.Empty(t, org.TrialExpiresAt)
199-
assert.Equal(t, org.RemainingTestableCount, 5)
199+
assert.Greater(t, org.RemainingTestableCount, 1)
200200
})
201201
})
202202

@@ -212,8 +212,6 @@ func TestOrganizationsRead(t *testing.T) {
212212
})
213213

214214
t.Run("reads default project", func(t *testing.T) {
215-
skipUnlessBeta(t)
216-
217215
org, err := client.Organizations.ReadWithOptions(ctx, orgTest.Name, OrganizationReadOptions{Include: []OrganizationIncludeOpt{OrganizationDefaultProject}})
218216
require.NoError(t, err)
219217
assert.Equal(t, orgTest.Name, org.Name)

0 commit comments

Comments
 (0)