reference-dataform util- spec changes 10/94910/2
authorArundathi Patil <arundpil@in.ibm.com>
Wed, 4 Sep 2019 10:26:52 +0000 (15:56 +0530)
committerTakamune Cho <takamune.cho@att.com>
Fri, 6 Sep 2019 17:50:07 +0000 (17:50 +0000)
Fixed erros and test case in this file

Issue-ID: APPC-1632
Change-Id: I01b21f140d69f4a1a8c0b01bf59ea1d189c85f4b
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.util.spec.ts

index 7745035..47b6dfc 100644 (file)
@@ -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);
     }));