Skip to content

Commit 0986b26

Browse files
committed
Fixed a leftover extension in a unit test
1 parent 334cad6 commit 0986b26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UnitTests/UnitTests.UWP/UI/Controls/Test_UniformGrid_AutoLayout.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public void Test_UniformGrid_AutoLayout_FixedElementZeroZeroSpecial()
8585
var treeRoot = XamlReader.Load(@"<Page
8686
xmlns=""http://schemas.microsoft.com/winfx/2006/xaml/presentation""
8787
xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml""
88-
xmlns:ex=""using:Microsoft.Toolkit.Uwp.UI.Extensions""
88+
xmlns:ui=""using:Microsoft.Toolkit.Uwp.UI""
8989
xmlns:controls=""using:Microsoft.Toolkit.Uwp.UI.Controls"">
9090
<controls:UniformGrid x:Name=""UniformGrid"">
9191
<Border/>
@@ -97,7 +97,7 @@ public void Test_UniformGrid_AutoLayout_FixedElementZeroZeroSpecial()
9797
<!-- Since Grid Row/Columns are 0 by default, we need to also add
9898
AutoLayout False here as well to get the desired behavior,
9999
Otherwise we can't tell it apart from the other items. -->
100-
<Border Grid.Row=""0"" Grid.Column=""0"" controls:UniformGrid.AutoLayout=""{ex:NullableBool Value=False}""/>
100+
<Border Grid.Row=""0"" Grid.Column=""0"" controls:UniformGrid.AutoLayout=""{ui:NullableBool Value=False}""/>
101101
<Border/>
102102
</controls:UniformGrid>
103103
</Page>") as FrameworkElement;

0 commit comments

Comments
 (0)