Skip to content

Commit aaffcbf

Browse files
Renamed file and updated class name to align with the issue ID
1 parent a9c4cfa commit aaffcbf

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/Controls/tests/TestCases.HostApp/Issues/Issue14184.cs renamed to src/Controls/tests/TestCases.HostApp/Issues/Issue32791.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
namespace Maui.Controls.Sample.Issues;
22

3-
[Issue(IssueTracker.Github, 14184, "Setting the IsEnabled property of the CarouselView to false does not prevent swiping through items", PlatformAffected.Android | PlatformAffected.iOS )]
4-
public class Issue14184 : ContentPage
3+
[Issue(IssueTracker.Github, 32791, "Setting the IsEnabled property of the CarouselView to false does not prevent swiping through items", PlatformAffected.Android | PlatformAffected.iOS )]
4+
public class Issue32791 : ContentPage
55
{
66
CarouselView _carouselView;
77
Label _statusLabel;
8-
public Issue14184()
8+
public Issue32791()
99
{
1010
_carouselView = new CarouselView
1111
{
@@ -34,7 +34,7 @@ public Issue14184()
3434

3535
_statusLabel = new Label
3636
{
37-
AutomationId = "Issue14184StatusLabel",
37+
AutomationId = "Issue32791StatusLabel",
3838
Text = "Success",
3939
};
4040

src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue14184.cs renamed to src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue32791.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
namespace Microsoft.Maui.TestCases.Tests.Issues;
66

7-
public class Issue14184 : _IssuesUITest
7+
public class Issue32791 : _IssuesUITest
88
{
9-
public Issue14184(TestDevice device) : base(device)
9+
public Issue32791(TestDevice device) : base(device)
1010
{
1111
}
1212

@@ -19,7 +19,7 @@ public void VerifyCarouselViewPreventsSwipingWhenDisabled()
1919
App.WaitForElement("DisabledCarouselView");
2020
App.ScrollRight("DisabledCarouselView");
2121

22-
var statusText = App.WaitForElement("Issue14184StatusLabel").GetText();
22+
var statusText = App.WaitForElement("Issue32791StatusLabel").GetText();
2323
Assert.That(statusText, Is.EqualTo("Success"));
2424
}
2525
}

0 commit comments

Comments
 (0)