Skip to content

Commit 072b1ad

Browse files
committed
Update team user for new CI
1 parent 2ebce74 commit 072b1ad

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

port/team/resource_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func TestAccPortTeamUpdate(t *testing.T) {
4747
resource "port_team" "team" {
4848
name = "%s"
4949
description = "Test description2"
50-
users = ["[email protected]"]
50+
users = ["[email protected]"]
5151
}`, teamName)
5252

5353
resource.Test(t, resource.TestCase{
@@ -68,7 +68,7 @@ func TestAccPortTeamUpdate(t *testing.T) {
6868
resource.TestCheckResourceAttr("port_team.team", "name", teamName),
6969
resource.TestCheckResourceAttr("port_team.team", "description", "Test description2"),
7070
resource.TestCheckResourceAttr("port_team.team", "users.#", "1"),
71-
resource.TestCheckResourceAttr("port_team.team", "users.0", "[email protected]"),
71+
resource.TestCheckResourceAttr("port_team.team", "users.0", "[email protected]"),
7272
),
7373
},
7474
},
@@ -119,7 +119,7 @@ func TestAccPortTeamImport(t *testing.T) {
119119
resource "port_team" "team" {
120120
name = "%s"
121121
description = "Test description"
122-
users = ["[email protected]"]
122+
users = ["[email protected]"]
123123
}`, teamName)
124124

125125
resource.Test(t, resource.TestCase{
@@ -132,7 +132,7 @@ func TestAccPortTeamImport(t *testing.T) {
132132
resource.TestCheckResourceAttr("port_team.team", "name", teamName),
133133
resource.TestCheckResourceAttr("port_team.team", "description", "Test description"),
134134
resource.TestCheckResourceAttr("port_team.team", "users.#", "1"),
135-
resource.TestCheckResourceAttr("port_team.team", "users.0", "[email protected]"),
135+
resource.TestCheckResourceAttr("port_team.team", "users.0", "[email protected]"),
136136
),
137137
},
138138
{

0 commit comments

Comments
 (0)