diff --git a/http/ba_test.ts b/http/ba_test.ts index e3747aa..b3052ea 100644 --- a/http/ba_test.ts +++ b/http/ba_test.ts @@ -1,4 +1,4 @@ -import { assertEquals } from "https://deno.land/std@0.159.0/testing/asserts.ts"; +import { assertEquals } from "https://deno.land/std@0.211.0/testing/asserts.ts"; import { baFetch, BasicAuthInfo } from "./ba.ts"; const testUrl = diff --git a/http/oauth1_test.ts b/http/oauth1_test.ts index c59c8f5..f5721a2 100644 --- a/http/oauth1_test.ts +++ b/http/oauth1_test.ts @@ -1,4 +1,4 @@ -import { assertEquals } from "https://deno.land/std@0.159.0/testing/asserts.ts"; +import { assertEquals } from "https://deno.land/std@0.211.0/testing/asserts.ts"; import { calcSignature, diff --git a/path/pathresolver.ts b/path/pathresolver.ts index bda717f..db7d55c 100644 --- a/path/pathresolver.ts +++ b/path/pathresolver.ts @@ -1,4 +1,4 @@ -import * as path from "https://deno.land/std@0.159.0/path/mod.ts"; +import * as path from "https://deno.land/std@0.211.0/path/mod.ts"; export function pathResolver(meta: ImportMeta): (p: string) => string { return (p) => path.fromFileUrl(new URL(p, meta.url));