Skip to content

Commit

Permalink
Code Review Feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Haselhan committed Oct 10, 2023
1 parent d2a7309 commit dc0c229
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { NO_ERRORS_SCHEMA } from '@angular/core';
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { DeepMocked } from '@golevelup/ts-jest';
import { PublicService } from '../../../../../services/public/public.service';
Expand All @@ -18,6 +19,7 @@ describe('AdditionalInformationComponent', () => {
useValue: mockPublicService,
},
],
schemas: [NO_ERRORS_SCHEMA],
}).compileComponents();

fixture = TestBed.createComponent(AdditionalInformationComponent);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ describe('PublicNotificationService', () => {
expect(service).toBeDefined();
});

it('load a Notice of Intent and its related data for get NOI', async () => {
it('load a Notification and its related data for get notification', async () => {
mockNOIService.getByFileNumber.mockResolvedValue(
new Notification({
type: new NotificationType(),
Expand Down

0 comments on commit dc0c229

Please sign in to comment.