From 2aee0b39aa32c1ca3f33152cdc9675f166a3cba4 Mon Sep 17 00:00:00 2001 From: j3lte Date: Tue, 21 Nov 2023 23:36:35 +0100 Subject: [PATCH] Update deps --- dev_deps.ts | 6 +----- test/Pastebin.test.ts | 9 +-------- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/dev_deps.ts b/dev_deps.ts index 6089b54..d511dcc 100644 --- a/dev_deps.ts +++ b/dev_deps.ts @@ -1,8 +1,4 @@ -export { - assertEquals, - assertRejects, - assertThrows, -} from "https://deno.land/std@0.207.0/assert/mod.ts"; +export { assertEquals, assertRejects } from "https://deno.land/std@0.207.0/assert/mod.ts"; export { emptyDir } from "https://deno.land/std@0.207.0/fs/mod.ts"; export { MockFetch } from "https://deno.land/x/deno_mock_fetch@1.0.1/mod.ts"; export { resolvesNext, stub } from "https://deno.land/std@0.207.0/testing/mock.ts"; diff --git a/test/Pastebin.test.ts b/test/Pastebin.test.ts index c48efff..149b0cb 100644 --- a/test/Pastebin.test.ts +++ b/test/Pastebin.test.ts @@ -1,11 +1,4 @@ -import { - assertEquals, - assertRejects, - assertThrows, - MockFetch, - resolvesNext, - stub, -} from "../dev_deps.ts"; +import { assertEquals, assertRejects, MockFetch, resolvesNext, stub } from "../dev_deps.ts"; import { ExpirationTime, IPastebinOptions, Pastebin, PrivacyLevel } from "../mod.ts"; // We're mocking Pastebin with a timeout of 0, so we don't introduce unwanted timeouts