diff --git a/deno-runtime/handlers/tests/videoconference-handler.test.ts b/deno-runtime/handlers/tests/videoconference-handler.test.ts index ab48ece3f..de440ef90 100644 --- a/deno-runtime/handlers/tests/videoconference-handler.test.ts +++ b/deno-runtime/handlers/tests/videoconference-handler.test.ts @@ -1,15 +1,12 @@ // deno-lint-ignore-file no-explicit-any -import { assertEquals } from 'https://deno.land/std@0.203.0/assert/mod.ts'; +import { assertEquals, assertObjectMatch } from 'https://deno.land/std@0.203.0/assert/mod.ts'; import { beforeEach, describe, it } from 'https://deno.land/std@0.203.0/testing/bdd.ts'; -import { spy, stub } from "https://deno.land/std@0.203.0/testing/mock.ts"; +import { spy } from "https://deno.land/std@0.203.0/testing/mock.ts"; import { AppObjectRegistry } from '../../AppObjectRegistry.ts'; -import { AppAccessorsInstance } from '../../lib/accessors/mod.ts'; import videoconfHandler from '../videoconference-handler.ts'; import { assertInstanceOf } from "https://deno.land/std@0.203.0/assert/assert_instance_of.ts"; import { JsonRpcError } from "jsonrpc-lite"; -import { assert } from "https://deno.land/std@0.203.0/assert/assert.ts"; -import { assertObjectMatch } from "https://deno.land/std@0.203.0/assert/assert_object_match.ts"; describe('handlers > videoconference', () => { // deno-lint-ignore no-unused-vars