Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jattasNI committed Oct 4, 2024
1 parent 301dc00 commit 8ca9206
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe('Nimble anchor RouterLinkWithHrefDirective', () => {
beforeEach(() => {
router = TestBed.inject(Router);
location = TestBed.inject(Location);
anchor = harness.fixture.debugElement.query(By.css('nimble-anchor')).nativeElement;
anchor = harness.fixture.debugElement.query(By.css('nimble-anchor')).nativeElement as Anchor;
innerAnchor = anchor!.shadowRoot!.querySelector('a')!;
routerNavigateByUrlSpy = spyOn(router, 'navigateByUrl').and.callThrough();
anchorClickHandlerSpy = jasmine.createSpy('click');
Expand Down

0 comments on commit 8ca9206

Please sign in to comment.