Skip to content

Commit

Permalink
refactor(filtering-ui-test): adjust according to latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ddaribo committed Jul 19, 2024
1 parent 8e1196b commit b06fe16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ describe('IgxGrid - Filtering Row UI actions #grid', () => {
filterUIRow = fix.debugElement.query(By.css(FILTER_UI_ROW));
input = filterUIRow.query(By.directive(IgxInputDirective)).nativeElement;
// since 'shortTime' is numeric, input format will include its numeric parts
expect(input.getAttribute('ng-reflect-input-format')).toMatch('h:mm a');
expect(input.getAttribute('ng-reflect-input-format').normalize('NFKD')).toMatch('hh:mm tt');
expect(input.getAttribute('ng-reflect-display-format')).toMatch('shortTime');
}));

Expand Down

0 comments on commit b06fe16

Please sign in to comment.