From b278a4c68382e5474bd5b989283f07e37c6f958f Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Wed, 4 Sep 2019 15:56:52 +0530 Subject: reference-dataform util- spec changes Fixed erros and test case in this file Issue-ID: APPC-1632 Change-Id: I01b21f140d69f4a1a8c0b01bf59ea1d189c85f4b Signed-off-by: Arundathi Patil --- .../reference-dataform/reference-dataform.util.spec.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.util.spec.ts') diff --git a/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.util.spec.ts b/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.util.spec.ts index 7745035..47b6dfc 100644 --- a/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.util.spec.ts +++ b/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.util.spec.ts @@ -28,12 +28,13 @@ import { ReferenceDataFormUtil } from './reference-dataform.util'; import { NotificationsService } from 'angular2-notifications'; import { UtilityService } from '../../../shared/services/utilityService/utility.service'; import { HttpUtilService } from '../../../shared/services/httpUtil/http-util.service'; +import { APIService } from "../../../shared/services/cdt.apicall"; describe('ReferenceDataFormUtil', () => { beforeEach(() => { TestBed.configureTestingModule({ imports: [HttpClientModule], - providers: [ReferenceDataFormUtil, HttpUtilService, NotificationsService, UtilityService, BaseRequestOptions, MockBackend, + providers: [ReferenceDataFormUtil, HttpUtilService, NotificationsService, UtilityService, BaseRequestOptions, MockBackend, APIService, { provide: Http, useFactory: (backend: MockBackend, defaultOptions: BaseRequestOptions) => { @@ -67,7 +68,7 @@ describe('ReferenceDataFormUtil', () => { it('should test nullCheckForVnfcType and nullCheckForVnfcTypeList function', inject([ReferenceDataFormUtil], (service: ReferenceDataFormUtil) => { let returnValueVnfcType = service.nullCheckForVnfcType(false); - let returnValueVnfcTypeList = service.nullCheckForVnfcTypeList('null'); + let returnValueVnfcTypeList = service.nullCheckForVnfcTypeList(null); expect(returnValueVnfcType).toBe(true); expect(returnValueVnfcTypeList).toBe(true); })); -- cgit 1.2.3-korg