meta: fix typo

This commit is contained in:
Xymorot 2020-12-28 17:26:02 +01:00
parent 5300207498
commit 4c169178d9
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ describe('Logger Service', () => {
const logLevels = ['fatal', 'error', 'warning', 'notice', 'info'];
const logLevelsNumber = [0, 1, 2, 3, 4];
// hard-coded because it is hardcoded in the logger as well and therefore can be tested to be this way, in byte
// hard-coded because it is hardcoded in the logger as well and therefore can be tested to be this way, in bytes
const maxLogSize = 50000;
type LogLevelArbitrary = fc.Arbitrary<'fatal' | 'error' | 'warning' | 'notice' | 'info'>;