From 463066a511dcac6fcb733e002d9039b59124897c Mon Sep 17 00:00:00 2001 From: VolcanoCookies Date: Tue, 23 May 2023 17:56:52 +0200 Subject: [PATCH] chore: fix prettier issue --- src/manifests/utils/corruptions/throttle.test.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/manifests/utils/corruptions/throttle.test.ts b/src/manifests/utils/corruptions/throttle.test.ts index 2893409..48c075b 100644 --- a/src/manifests/utils/corruptions/throttle.test.ts +++ b/src/manifests/utils/corruptions/throttle.test.ts @@ -1,4 +1,3 @@ -import statusCodeConfig from './statusCode'; import throttleConfig from './throttle'; describe('manifest.utils.corruptions.throttle', () => { @@ -113,7 +112,9 @@ describe('manifest.utils.corruptions.throttle', () => { it('should handle illegal characters in query object', () => { // Arrange // eslint-disable-next-line @typescript-eslint/no-explicit-any - const throttleValue = [{ rate: 'hehe', i: false, sq: { he: 'he' } }] as any; + const throttleValue = [ + { rate: 'hehe', i: false, sq: { he: 'he' } } + ] as any; // Act const actual = getManifestConfigs(throttleValue);