Skip to content

Commit

Permalink
Address spell issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryxu-msft committed Feb 27, 2025
1 parent b873c45 commit 4157118
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/common/UITestAutomation/Element/HyperlinkButton.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Microsoft.PowerToys.UITest
{
/// <summary>
/// Represents a HyperLinkButton in the UI test environment.
/// HyperLinkButton reepresents a button control that functions as a hyperlink.
/// HyperLinkButton represents a button control that functions as a hyperlink.
/// </summary>
public class HyperlinkButton : Button
{
Expand Down
2 changes: 1 addition & 1 deletion src/common/UITestAutomation/Element/NavigationViewItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Microsoft.PowerToys.UITest
{
/// <summary>
/// Represents a NavigationViewItem in the UI test environment.
/// NavigationViewItem pepresents the container for an item in a NavigationView control.
/// NavigationViewItem represents the container for an item in a NavigationView control.
/// </summary>
public class NavigationViewItem : Element
{
Expand Down
2 changes: 1 addition & 1 deletion src/common/UITestAutomation/Element/TextBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Microsoft.PowerToys.UITest
{
/// <summary>
/// Represents a TextBox in the UI test environment.
/// TextBox rpresents a control that can be used to display and edit plain text (single or multi-line).
/// TextBox represents a control that can be used to display and edit plain text (single or multi-line).
/// </summary>
public class TextBox : Element
{
Expand Down
2 changes: 1 addition & 1 deletion src/modules/Hosts/Hosts.UITests/HostsSettingTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void TestWarningDialog()
Task.Delay(500).Wait();

// Validating click 'Accept' button in Warning-Dialog, the Hosts File Editor window would NOT be closed
Assert.IsFalse(this.IsHostsFileEditorClosed(), "Hosts File Editor should NOT be closed after click Aceept button in Warning Dialog");
Assert.IsFalse(this.IsHostsFileEditorClosed(), "Hosts File Editor should NOT be closed after click Accept button in Warning Dialog");

// Close Hosts File Editor window
this.Session.Find<Window>("Hosts File Editor").Close();
Expand Down

0 comments on commit 4157118

Please sign in to comment.