diff options
author | Arundathi Patil <arundpil@in.ibm.com> | 2018-07-24 16:50:51 +0530 |
---|---|---|
committer | Takamune Cho <tc012c@att.com> | 2018-07-26 13:06:18 +0000 |
commit | b3686fc1d9abd792669c95567db9b9da5eeb8ede (patch) | |
tree | 16628566e5bf112f0f7f4e9dce4dade90e5ebc04 /src | |
parent | 333a9bdd83ec507f7221b3c9b70f630d5cc8b314 (diff) |
Fixed test case
Test case was expecting wrong value from function in test.component.
fixed this issue.
Issue-ID: APPC-1064
Change-Id: I668778c0ae30f218204d652ed9efbd9bc0ace097
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/app/test/test.component.spec.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/app/test/test.component.spec.ts b/src/app/test/test.component.spec.ts index 997cd26..231795a 100644 --- a/src/app/test/test.component.spec.ts +++ b/src/app/test/test.component.spec.ts @@ -2,6 +2,8 @@ ============LICENSE_START========================================== =================================================================== Copyright (C) 2018 AT&T Intellectual Property. All rights reserved. + +Copyright (C) 2018 IBM Intellectual Property. All rights reserved. =================================================================== Unless otherwise specified, all software contained herein is licensed @@ -429,7 +431,7 @@ describe( 'TestComponent', () => { expect(component.getUrlEndPoint('upgradeprecheck')).toEqual('upgrade-pre-check'); expect(component.getUrlEndPoint('upgradesoftware')).toEqual('upgrade-software'); expect(component.getUrlEndPoint('DeFaultCASE')).toEqual('defaultcase'); - expect(component.getUrlEndPoint('upgradebackup')).toEqual('upgrad-ebackup'); + expect(component.getUrlEndPoint('upgradebackup')).toEqual('upgrade-backup'); expect(component.getUrlEndPoint('attachvolume')).toEqual('attach-volume'); expect(component.getUrlEndPoint('detachvolume')).toEqual('detach-volume'); }); |