instantiation Status Pause on Failure verbiage 77/117077/2
authorPATTANAYAK, SAUMYA SWARUP (sp931a) <sp931a@att.com>
Fri, 22 Jan 2021 17:05:08 +0000 (12:05 -0500)
committerIkram Ikramullah <ikram@research.att.com>
Tue, 2 Feb 2021 20:09:37 +0000 (20:09 +0000)
Issue-ID: VID-944
Change-Id: I17d1b2e3482ff3d4991c938744fc47048f692a97
Signed-off-by: PATTANAYAK, SAUMYA SWARUP (sp931a) <sp931a@att.com>
vid-webpack-master/src/app/instantiationStatus/instantiationStatus.component.service.spec.ts
vid-webpack-master/src/app/instantiationStatus/instantiationStatus.component.service.ts

index 5652923..849f3de 100644 (file)
@@ -151,7 +151,7 @@ describe('Instantiation Status Service', () => {
     'COMPLETED_WITH_ERRORS': 'Completed with errors: some of the planned actions where successfully committed while other have not.\n Open the service to check it out.',
     'UNEXPECTED_RANDOM_STATUS': 'Unexpected status: "UNEXPECTED_RANDOM_STATUS"',
     'COMPLETED_AND_PAUSED': 'Pause upon completion. you may resume the instantiation.\n Open the service to check it out.',
-    'FAILED_AND_PAUSED': 'Failed and Paused: you may re-deploy the instantiation.\n Open the service to check it out.',
+    'FAILED_AND_PAUSED': 'Failed and Paused: you may re-deploy the instantiation.',
   })) {
 
     test(`getStatusTooltip should return status popover: status=${status}`, () => {
index 709cb89..5127ae2 100644 (file)
@@ -174,7 +174,7 @@ export class InstantiationStatusComponentService {
       case  'COMPLETED_AND_PAUSED' :
         return new ServiceStatus(PAUSE_UPON_COMPLETION, 'default','Pause upon completion. you may resume the instantiation.\n Open the service to check it out.' );
       case 'FAILED_AND_PAUSED' :
-        return new ServiceStatus(FAILED_AND_PAUSED, 'success','Failed and Paused: you may re-deploy the instantiation.\n Open the service to check it out.' );
+        return new ServiceStatus(FAILED_AND_PAUSED, 'success','Failed and Paused: you may re-deploy the instantiation.' );
       default:
         return new ServiceStatus(UNKNOWN, 'primary', `Unexpected status: "${status}"`);
     }