Skip to content

Commit b0f7ebb

Browse files
committed
fix(condo): DOMA-12905 fix linter
1 parent 27e93d2 commit b0f7ebb

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

apps/condo/domains/miniapp/schema/SendVoIPCallStartMessageService.test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ const {
66
expectToThrowAccessDeniedErrorToResult,
77
expectToThrowAuthenticationErrorToResult,
88
expectToThrowGQLErrorToResult,
9-
expectToThrowGraphQLRequestError,
109
} = require('@open-condo/keystone/test.utils')
1110

1211
const { createTestContact } = require('@condo/domains/contact/utils/testSchema')
@@ -257,7 +256,7 @@ describe('SendVoIPCallStartMessageService', () => {
257256
})
258257

259258
const TEST_CASES = [
260-
{ name: `exceeds maximum length of ${MAX_CALL_META_LENGTH}`, callMeta: '1'.repeat(MAX_CALL_META_LENGTH + 1) }
259+
{ name: `exceeds maximum length of ${MAX_CALL_META_LENGTH}`, callMeta: '1'.repeat(MAX_CALL_META_LENGTH + 1) },
261260
]
262261

263262
test.each(TEST_CASES)('$name', async ({ callMeta }) => {

0 commit comments

Comments
 (0)