diff options
author | Liam Fallon <liam.fallon@est.tech> | 2022-02-07 09:06:51 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-02-07 09:06:51 +0000 |
commit | 5ca5cc1e2607518d1fd2c05421a6e6b8c9cd12ea (patch) | |
tree | 57ae0711209a62d997fce35d5e74d0ffaeca500d /gui-clamp/ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.test.js | |
parent | f342bf5bd3684998f66cfd78213303e90abbd90f (diff) | |
parent | c3ee2020d0bfd48c9b2a687d0f80e67190edb5d4 (diff) |
Merge "Added Policy Jest Tests"
Diffstat (limited to 'gui-clamp/ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.test.js')
-rw-r--r-- | gui-clamp/ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.test.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gui-clamp/ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.test.js b/gui-clamp/ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.test.js index d93f0b0..fd52761 100644 --- a/gui-clamp/ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.test.js +++ b/gui-clamp/ui-react/src/components/dialogs/Tosca/ViewLoopTemplatesModal.test.js @@ -2,8 +2,8 @@ * ============LICENSE_START======================================================= * ONAP CLAMP * ================================================================================ - * Copyright (C) 2019 AT&T Intellectual Property. All rights - * reserved. + * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. + * Modifications Copyright (C) 2022 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -68,7 +68,7 @@ describe('Verify ViewLoopTemplatesModal', () => { } }); }); - const component = shallow(<ViewLoopTemplatesModal/>); + shallow(<ViewLoopTemplatesModal/>); }); it('Test API Rejection', () => { @@ -78,7 +78,7 @@ describe('Verify ViewLoopTemplatesModal', () => { }), 100 ); - const component = shallow(<ViewLoopTemplatesModal/>); + shallow(<ViewLoopTemplatesModal/>); expect(myMockFunc.mock.calls.length).toBe(1); }); |