From 235d287a8d9fefbfc3a64619ae27ff3d833a9e9c Mon Sep 17 00:00:00 2001 From: ghaerdi Date: Tue, 24 May 2022 22:41:47 -0400 Subject: [PATCH] fix: compare some objects with assertEqual method using the std@0.87.0/testing library --- import_map.json | 2 +- src/maven.ts | 2 +- src/merlin.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/import_map.json b/import_map.json index c218a1e..9e4326b 100644 --- a/import_map.json +++ b/import_map.json @@ -2,6 +2,6 @@ "imports": { "fmt/": "https://deno.land/std@0.140.0/fmt/", "pretty_benching": "https://deno.land/x/pretty_benching@v0.3.3/mod.ts", - "trex_testing": "https://denopkg.com/crewdevio/Trex@proxy/proxy/files/testing.ts" + "testing/": "https://deno.land/std@0.87.0/testing/" } } diff --git a/src/maven.ts b/src/maven.ts index e1de5c5..a662cfb 100644 --- a/src/maven.ts +++ b/src/maven.ts @@ -11,7 +11,7 @@ import { prettyBenchmarkResult, } from "pretty_benching"; import * as colors from "fmt/colors.ts"; -import { bench } from "trex_testing"; +import * as bench from "testing/bench.ts"; /** * create simple and scalable benchmarks for typescript and javascript, running on deno diff --git a/src/merlin.ts b/src/merlin.ts index 565229a..0a90e04 100644 --- a/src/merlin.ts +++ b/src/merlin.ts @@ -5,7 +5,7 @@ * LICENSE file in the root directory of this source tree. */ -import { asserts } from "trex_testing"; +import * as asserts from "testing/asserts.ts"; import type { ArrayContains, Asserts,