From c4b083caf8f4682e49a3cfa56865f17393c2e435 Mon Sep 17 00:00:00 2001 From: Adam Josefus <1031370+adamjosefus@users.noreply.github.com> Date: Sun, 20 Feb 2022 16:46:22 +0100 Subject: [PATCH] Upgrade dependecies --- tests/MaskRouter.test.ts | 2 +- tests/PatternRouter.test.ts | 2 +- tests/RegExpRouter.test.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/MaskRouter.test.ts b/tests/MaskRouter.test.ts index 692cc35..b3d3565 100644 --- a/tests/MaskRouter.test.ts +++ b/tests/MaskRouter.test.ts @@ -3,7 +3,7 @@ */ -import { assertEquals } from "https://deno.land/std@0.125.0/testing/asserts.ts"; +import { assertEquals } from "https://deno.land/std@0.126.0/testing/asserts.ts"; import { MaskRouter } from "../routers/MaskRouter.ts"; diff --git a/tests/PatternRouter.test.ts b/tests/PatternRouter.test.ts index 78eadfd..c136ef8 100644 --- a/tests/PatternRouter.test.ts +++ b/tests/PatternRouter.test.ts @@ -3,7 +3,7 @@ */ -import { assertEquals } from "https://deno.land/std@0.125.0/testing/asserts.ts"; +import { assertEquals } from "https://deno.land/std@0.126.0/testing/asserts.ts"; import { PatternRouter } from "../routers/PatternRouter.ts"; diff --git a/tests/RegExpRouter.test.ts b/tests/RegExpRouter.test.ts index cd17f3c..c669913 100644 --- a/tests/RegExpRouter.test.ts +++ b/tests/RegExpRouter.test.ts @@ -3,7 +3,7 @@ */ -import { assertEquals } from "https://deno.land/std@0.125.0/testing/asserts.ts"; +import { assertEquals } from "https://deno.land/std@0.126.0/testing/asserts.ts"; import { RegExpRouter } from "../routers/RegExpRouter.ts";