Fix spec broken by signature change.

This commit is contained in:
Mark H. Wood
2023-05-19 14:00:21 -04:00
parent d54754f78a
commit 055ed9ba6e

View File

@@ -175,7 +175,7 @@ describe('SubmissionSectionUploadFileComponent test suite', () => {
it('should init file data properly', () => {
uploadService.getFileData.and.returnValue(observableOf(fileData));
comp.ngOnChanges();
comp.ngOnChanges({});
expect(comp.fileData).toEqual(fileData);
});