Skip to content

Commit

Permalink
Removes not needed warning message (#3775)
Browse files Browse the repository at this point in the history
  • Loading branch information
walmazacn authored Jun 12, 2024
1 parent e4599ca commit b6e09c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions container/src/services/container.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,6 @@ export class ContainerService {
case LuigiInternalMessageID.SET_DIRTY_STATUS_REQUEST:
this.dispatch(Events.SET_DIRTY_STATUS_REQUEST, targetCnt, event);
break;
default:
console.warn('Functionality not yet implemented: ', msg);
break;
}
}
}
Expand All @@ -198,4 +195,4 @@ export class ContainerService {
}
}

export const containerService = new ContainerService();
export const containerService = new ContainerService();
2 changes: 1 addition & 1 deletion container/test/services/container.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ describe('getContainerManager messageListener', () => {
}
};
cm.messageListener(event);
expect(consoleWarnSpy).toHaveBeenCalledWith('Functionality not yet implemented: ','no-func');
expect(consoleWarnSpy).not.toHaveBeenCalled();
});

});
Expand Down

0 comments on commit b6e09c0

Please sign in to comment.