@@ -852,6 +852,7 @@ func TestAccPortBlueprintOwnership(t *testing.T) {
852
852
}
853
853
ownership = {
854
854
type = "Direct"
855
+ title = "My direct owning teams"
855
856
}
856
857
}
857
858
` , parentIdentifier )
@@ -900,6 +901,7 @@ func TestAccPortBlueprintOwnership(t *testing.T) {
900
901
ownership = {
901
902
type = "Inherited"
902
903
path = "parent"
904
+ title = "My inherited owning teams"
903
905
}
904
906
}
905
907
` , parentIdentifier , childIdentifier )
@@ -915,6 +917,7 @@ func TestAccPortBlueprintOwnership(t *testing.T) {
915
917
resource .TestCheckResourceAttr ("port_blueprint.parent_blueprint" , "identifier" , parentIdentifier ),
916
918
resource .TestCheckResourceAttr ("port_blueprint.parent_blueprint" , "ownership.type" , "Direct" ),
917
919
resource .TestCheckNoResourceAttr ("port_blueprint.parent_blueprint" , "ownership.path" ),
920
+ resource .TestCheckResourceAttr ("port_blueprint.parent_blueprint" , "ownership.title" , "My direct owning teams" ),
918
921
),
919
922
},
920
923
{
@@ -924,6 +927,7 @@ func TestAccPortBlueprintOwnership(t *testing.T) {
924
927
resource .TestCheckResourceAttr ("port_blueprint.child_blueprint" , "identifier" , childIdentifier ),
925
928
resource .TestCheckResourceAttr ("port_blueprint.child_blueprint" , "ownership.type" , "Inherited" ),
926
929
resource .TestCheckResourceAttr ("port_blueprint.child_blueprint" , "ownership.path" , "parent" ),
930
+ resource .TestCheckResourceAttr ("port_blueprint.child_blueprint" , "ownership.title" , "My inherited owning teams" ),
927
931
),
928
932
},
929
933
},
0 commit comments