-const logs = ['example1', null, undefined, 1, { example: true }];
+const exampleLogs = ['example1', null, undefined, 1, { example: true }];
-const valueCheck = dummyLoggerA.values.reduce((count, log) => (typeof log._cologneLog === 'string' ? ++count : count), 0);
+const valueCheck = dummyLoggerA.values.reduce((count, log) => (typeof log._cologneLog === 'string' ? count + 1 : count), 0);
'#log() should send every argument to the loggers');
Tap.similar(dummyLoggerA.values, dummyLoggerB.values,
'#log() should send the same arguments to all the loggers');
'#log() should send every argument to the loggers');
Tap.similar(dummyLoggerA.values, dummyLoggerB.values,
'#log() should send the same arguments to all the loggers');
Tap.equal(co.loggers.length, 2,
'#removeLogger() should do nothing if it can\'t find a logger');
Tap.equal(co.loggers.length, 2,
'#removeLogger() should do nothing if it can\'t find a logger');