Fixed lint issues

This commit is contained in:
Alexandre Vryghem
2023-02-19 01:04:25 +01:00
parent 718db3466d
commit 4f14d66400
3 changed files with 3 additions and 1 deletions

View File

@@ -87,7 +87,7 @@ describe('PageSizeSelectorComponent', () => {
const pageSizeSetting = fixture.debugElement.query(By.css('div.page-size-settings'));
const childElementToBeSelected = pageSizeSetting.query(By.css('option[value="10"]'));
expect(childElementToBeSelected).not.toBeNull();
expect(childElementToBeSelected.nativeElement.selected).toBeTrue()
expect(childElementToBeSelected.nativeElement.selected).toBeTrue();
done();
});
});