@@ -204,44 +204,44 @@ let ``Layout combine API tests`` =
204204 testList " LayoutObjects.Layout API" [
205205 testCase " combine Annotations" ( fun _ ->
206206 Expect.sequenceEqual
207- ( combined.TryGetTypedValue < seq< Annotation>>( " annotations" )) .Value
208- ( expectedCombined.TryGetTypedValue < seq< Annotation>>( " annotations" )) .Value
207+ ( combined.TryGetTypedPropertyValue < seq< Annotation>>( " annotations" )) .Value
208+ ( expectedCombined.TryGetTypedPropertyValue < seq< Annotation>>( " annotations" )) .Value
209209 " Layout.combine did not return the correct object"
210210 )
211211 testCase " combine Shapes" ( fun _ ->
212212 Expect.sequenceEqual
213- ( combined.TryGetTypedValue < seq< Shape>>( " shapes" )) .Value
214- ( expectedCombined.TryGetTypedValue < seq< Shape>>( " shapes" )) .Value
213+ ( combined.TryGetTypedPropertyValue < seq< Shape>>( " shapes" )) .Value
214+ ( expectedCombined.TryGetTypedPropertyValue < seq< Shape>>( " shapes" )) .Value
215215 " Layout.combine did not return the correct object"
216216 )
217217 testCase " combine Selections" ( fun _ ->
218218 Expect.sequenceEqual
219- ( combined.TryGetTypedValue < seq< Selection>>( " selections" )) .Value
220- ( expectedCombined.TryGetTypedValue < seq< Selection>>( " selections" )) .Value
219+ ( combined.TryGetTypedPropertyValue < seq< Selection>>( " selections" )) .Value
220+ ( expectedCombined.TryGetTypedPropertyValue < seq< Selection>>( " selections" )) .Value
221221 " Layout.combine did not return the correct object"
222222 )
223223 testCase " combine Images" ( fun _ ->
224224 Expect.sequenceEqual
225- ( combined.TryGetTypedValue < seq< LayoutImage>>( " images" )) .Value
226- ( expectedCombined.TryGetTypedValue < seq< LayoutImage>>( " images" )) .Value
225+ ( combined.TryGetTypedPropertyValue < seq< LayoutImage>>( " images" )) .Value
226+ ( expectedCombined.TryGetTypedPropertyValue < seq< LayoutImage>>( " images" )) .Value
227227 " Layout.combine did not return the correct object"
228228 )
229229 testCase " combine Sliders" ( fun _ ->
230230 Expect.sequenceEqual
231- ( combined.TryGetTypedValue < seq< Slider>>( " sliders" )) .Value
232- ( expectedCombined.TryGetTypedValue < seq< Slider>>( " sliders" )) .Value
231+ ( combined.TryGetTypedPropertyValue < seq< Slider>>( " sliders" )) .Value
232+ ( expectedCombined.TryGetTypedPropertyValue < seq< Slider>>( " sliders" )) .Value
233233 " Layout.combine did not return the correct object"
234234 )
235235 testCase " combine HiddenLabels" ( fun _ ->
236236 Expect.sequenceEqual
237- ( combined.TryGetTypedValue < seq< string>>( " hiddenlabels" )) .Value
238- ( expectedCombined.TryGetTypedValue < seq< string>>( " hiddenlabels" )) .Value
237+ ( combined.TryGetTypedPropertyValue < seq< string>>( " hiddenlabels" )) .Value
238+ ( expectedCombined.TryGetTypedPropertyValue < seq< string>>( " hiddenlabels" )) .Value
239239 " Layout.combine did not return the correct object"
240240 )
241241 testCase " combine UpdateMenus" ( fun _ ->
242242 Expect.sequenceEqual
243- ( combined.TryGetTypedValue < seq< UpdateMenu>>( " updatemenus" )) .Value
244- ( expectedCombined.TryGetTypedValue < seq< UpdateMenu>>( " updatemenus" )) .Value
243+ ( combined.TryGetTypedPropertyValue < seq< UpdateMenu>>( " updatemenus" )) .Value
244+ ( expectedCombined.TryGetTypedPropertyValue < seq< UpdateMenu>>( " updatemenus" )) .Value
245245 " Layout.combine did not return the correct object"
246246 )
247247 ]
0 commit comments