Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void ProgressSpinnerRemainsDisabledAfterSwappingContent()
public void ProgressSpinnerWorksWhenReEnabled()
{
App.WaitForElement("SetToEnabled").Tap();
App.ScrollUp("CollectionView");
App.ScrollUp("CollectionView", ScrollStrategy.Gesture, swipePercentage:0.99, swipeSpeed:2500);
Copy link

Copilot AI Oct 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Consider adding spaces around the colon in named parameters for consistency with C# coding conventions. The parameter should be swipePercentage: 0.99 instead of swipePercentage:0.99.

Suggested change
App.ScrollUp("CollectionView", ScrollStrategy.Gesture, swipePercentage:0.99, swipeSpeed:2500);
App.ScrollUp("CollectionView", ScrollStrategy.Gesture, swipePercentage: 0.99, swipeSpeed: 2500);

Copilot uses AI. Check for mistakes.
App.WaitForElement("RefreshTriggered");
}
}
Expand Down
Loading