mirror of
https://github.com/nasa/openmct.git
synced 2025-04-03 01:11:33 +00:00
typo fix! and using object assign where appropriate
This commit is contained in:
parent
e1d0c22071
commit
79c4dc9272
@ -72,7 +72,7 @@ describe("The Remove Action plugin", () => {
|
||||
resetApplicationState(openmct);
|
||||
});
|
||||
|
||||
it("should be definied", () => {
|
||||
it("should be defined", () => {
|
||||
expect(RemoveActionPlugin).toBeDefined();
|
||||
});
|
||||
|
||||
|
@ -166,11 +166,7 @@ export function getMockObjects(opts = {}) {
|
||||
if(opts.overwrite) {
|
||||
for(let mock in requestedMocks) {
|
||||
if(opts.overwrite[mock]) {
|
||||
for(let key in opts.overwrite[mock]) {
|
||||
if (Object.prototype.hasOwnProperty.call(opts.overwrite[mock], key)) {
|
||||
requestedMocks[mock][key] = opts.overwrite[mock][key];
|
||||
}
|
||||
}
|
||||
requestedMocks[mock] = Object.assign(requestedMocks[mock], opts.overwrite[mock]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user