Skip to content

Commit 3ece994

Browse files
Update resource_tfe_team_test.go assertions
1 parent 42f701b commit 3ece994

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/provider/resource_tfe_team_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ func TestAccTFETeam_full_update(t *testing.T) {
202202
resource.TestCheckResourceAttr(
203203
"tfe_team.foobar", "visibility", "secret"),
204204
resource.TestCheckResourceAttr(
205-
"tfe_team.foobar", "allow_member_token_management", "false"),
205+
"tfe_team.foobar", "allow_member_token_management", "true"),
206206
resource.TestCheckResourceAttr(
207207
"tfe_team.foobar", "organization_access.0.manage_policies", "false"),
208208
resource.TestCheckResourceAttr(
@@ -523,7 +523,7 @@ func testAccCheckTFETeamAttributes_full_update(
523523
return fmt.Errorf("Bad visibility: %s", team.Visibility)
524524
}
525525

526-
if !team.AllowMemberTokenManagement {
526+
if team.AllowMemberTokenManagement {
527527
return fmt.Errorf("team.AllowMemberTokenManagement should be false")
528528
}
529529

0 commit comments

Comments
 (0)