From 4c169178d9166e151073953597852485a0134f20 Mon Sep 17 00:00:00 2001 From: Xymorot Date: Mon, 28 Dec 2020 17:26:02 +0100 Subject: [PATCH] meta: fix typo --- src/main/modules/logger/logger.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/modules/logger/logger.spec.ts b/src/main/modules/logger/logger.spec.ts index 7aa20c6..cd4e79d 100644 --- a/src/main/modules/logger/logger.spec.ts +++ b/src/main/modules/logger/logger.spec.ts @@ -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'>;