remove unused param

This commit is contained in:
FrancescoMolinaro
2024-01-12 15:08:35 +01:00
parent 11a80771a8
commit 3a87044600

View File

@@ -106,7 +106,7 @@ describe('LdnServicesService test', () => {
spyOn(service, 'searchBy').and.returnValue(observableOf(null)); spyOn(service, 'searchBy').and.returnValue(observableOf(null));
spyOn((service as any).searchData, 'searchBy').and.returnValue(createSuccessfulRemoteDataObject$(createPaginatedList([mockLdnService]))); spyOn((service as any).searchData, 'searchBy').and.returnValue(createSuccessfulRemoteDataObject$(createPaginatedList([mockLdnService])));
service.findByInboundPattern('testPattern').subscribe((result) => { service.findByInboundPattern('testPattern').subscribe(() => {
expect(service.searchBy).toHaveBeenCalledWith('byInboundPattern', findListOptions, undefined, undefined ); expect(service.searchBy).toHaveBeenCalledWith('byInboundPattern', findListOptions, undefined, undefined );
done(); done();
}); });