Skip to content

Commit d3fa8d4

Browse files
committed
spec(calendar): fix failing test
1 parent 354a621 commit d3fa8d4

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

projects/igniteui-angular/src/lib/calendar/calendar.component.spec.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -620,14 +620,8 @@ describe("IgxCalendar - ", () => {
620620
calendarRowsMar.forEach((row, idx) => {
621621
const firstRowItem = row.nativeElement.children[0];
622622
if (idx === 5) {
623-
// With simple counting for Sunday start, expect 13
624623
expect(firstRowItem.firstChild.innerText).toEqual(
625-
"13",
626-
);
627-
}
628-
if (idx === 6) {
629-
expect(firstRowItem.firstChild.innerText).toEqual(
630-
"13",
624+
"12",
631625
);
632626
}
633627
});

0 commit comments

Comments
 (0)