Skip to content

Commit f299fc4

Browse files
jsuarezruizrmarinho
authored andcommitted
Updated tests
1 parent a053d07 commit f299fc4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Controls/tests/TestCases.HostApp/Issues/Issues31117.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public partial class Issue31117 : ContentPage
88
public Issue31117()
99
{
1010
InitializeComponent();
11-
MyDatePicker.Date = new DateTime(2024, 12, 24);
11+
MyDatePicker.Date = new DateTime(2024, 12, 23);
1212
UpdateDisplayLabel();
1313
}
1414

src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue31117.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public Issue31117(TestDevice testDevice) : base(testDevice)
1717
[Category(UITestCategories.DatePicker)]
1818
public void DatePickerYearFormat_InitialState_DisplaysFourDigitYear()
1919
{
20-
// Verify initial display shows 4-digit year for 2024-12-24
20+
// Verify initial display shows 4-digit year for 2024-12-23
2121
var datePickerText = App.WaitForElement("MyDatePicker").GetText();
2222
Assert.That(datePickerText, Does.Contain("2024"), "DatePicker should display 4-digit year initially");
2323
Assert.That(datePickerText, Does.Not.Contain("/24"), "DatePicker should not show 2-digit year pattern");

0 commit comments

Comments
 (0)