modifying root name (#3350)

Co-authored-by: Andrew Henry <akhenry@gmail.com>
This commit is contained in:
Jamie V 2020-09-04 10:20:13 -07:00 committed by GitHub
parent 6f2d8e6ce3
commit 18b2a270c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ class RootObjectProvider {
key: "ROOT",
namespace: ""
},
name: 'The root object',
name: 'Open MCT',
type: 'root',
composition: []
};

View File

@ -22,7 +22,7 @@
import RootObjectProvider from '../RootObjectProvider';
describe('RootObjectProvider', function () {
// let rootRegistry;
const ROOT_NAME = 'Open MCT';
let rootObjectProvider;
let roots = ['some root'];
let rootRegistry = {
@ -43,7 +43,7 @@ describe('RootObjectProvider', function () {
key: "ROOT",
namespace: ""
},
name: 'The root object',
name: ROOT_NAME,
type: 'root',
composition: ['some root']
});