Skip to content

Commit

Permalink
fix(module:calendar): correct expected class name in test (#4369)
Browse files Browse the repository at this point in the history
  • Loading branch information
wenqi73 authored and hsuanxyz committed Nov 1, 2019
1 parent d7bae5e commit 12111e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/calendar/nz-calendar.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ describe('Calendar', () => {
const cells = host.queryAll(By.css('td'));
const current = cells[10];

expect(current.nativeElement.className).toContain('ant-fullcalendar-month-panel-selected-cell ng-star-inserted');
expect(current.nativeElement.className).toContain('ant-fullcalendar-month-panel-selected-cell');
});
});

Expand Down

0 comments on commit 12111e5

Please sign in to comment.