changed assert message

This commit is contained in:
seraphima
2023-11-29 15:54:39 +01:00
parent 285127020a
commit f97865e49d

View File

@@ -222,7 +222,7 @@ namespace Microsoft.FancyZonesEditor.UnitTests.Utils
public void Click_EditLayout(string layoutName)
{
var layout = GetLayout(layoutName);
Assert.IsNotNull(layout, $"Layout {layoutName} not found");
Assert.IsNotNull(layout, $"Layout \"{layoutName}\" not found");
var editButton = layout?.FindElementByAccessibilityId(AccessibilityId.EditLayoutButton);
Assert.IsNotNull(editButton, "Edit button not found");
editButton.Click();