Skip to content

Commit

Permalink
One more test to ignore whitespace in dates
Browse files Browse the repository at this point in the history
  • Loading branch information
exyi committed Dec 20, 2024
1 parent 3991509 commit 1896bff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public void Feature_TimeOnly_PropertyTranslations()
textbox.Clear().SendKeys(stringDateTime).SendEnterKey();

var str = browser.Single("span[data-ui=timeOnlyToString]");
AssertUI.TextEquals(str, "3:28:31 PM");
AssertUI.Text(str, t => EqualsIgnoreSpace(t, "3:28:31 PM"));
var props = browser.Single("span[data-ui=timeOnlyProperties]");
AssertUI.TextEquals(props, "15 hours 28 minues 31 seconds and 0 milliseconds");
});
Expand Down

0 comments on commit 1896bff

Please sign in to comment.