Remove test for exact default logger identity

This commit is contained in:
murgatroid99 2021-07-15 10:55:50 -07:00
parent a0f298c514
commit 6359bf066f
1 changed files with 0 additions and 4 deletions

View File

@ -27,10 +27,6 @@ describe('Logging', () => {
grpc.setLogVerbosity(grpc.logVerbosity.DEBUG);
});
it('logger defaults to console', () => {
assert.strictEqual(logging.getLogger(), console);
});
it('sets the logger to a new value', () => {
const logger: Partial<Console> = {};