@@ -73,8 +73,6 @@ func TestAccOrganizationResource(t *testing.T) {
7373 resource .TestCheckResourceAttr ("coderd_organization.test" , "name" , "example-org" ),
7474 resource .TestCheckResourceAttr ("coderd_organization.test" , "display_name" , "Example Organization" ),
7575 resource .TestCheckResourceAttr ("coderd_organization.test" , "icon" , "/icon/coder.svg" ),
76- resource .TestCheckResourceAttr ("coderd_organization.test" , "members.#" , "1" ),
77- resource .TestCheckResourceAttr ("coderd_organization.test" , "members.0" , user1 .ID .String ()),
7876 ),
7977 },
8078 // Import
@@ -91,8 +89,6 @@ func TestAccOrganizationResource(t *testing.T) {
9189 Check : resource .ComposeAggregateTestCheckFunc (
9290 resource .TestCheckResourceAttr ("coderd_organization.test" , "name" , "example-org-new" ),
9391 resource .TestCheckResourceAttr ("coderd_organization.test" , "display_name" , "Example Organization New" ),
94- resource .TestCheckResourceAttr ("coderd_organization.test" , "members.#" , "1" ),
95- resource .TestCheckResourceAttr ("coderd_organization.test" , "members.0" , user2 .ID .String ()),
9692 ),
9793 },
9894 // Unmanaged members
0 commit comments