Skip to content

Commit

Permalink
fix: compare some objects with assertEqual method using the [email protected].…
Browse files Browse the repository at this point in the history
…0/testing library
  • Loading branch information
ghaerdi committed May 25, 2022
1 parent f12e2e5 commit 235d287
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion import_map.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"imports": {
"fmt/": "https://deno.land/[email protected]/fmt/",
"pretty_benching": "https://deno.land/x/[email protected]/mod.ts",
"trex_testing": "https://denopkg.com/crewdevio/Trex@proxy/proxy/files/testing.ts"
"testing/": "https://deno.land/[email protected]/testing/"
}
}
2 changes: 1 addition & 1 deletion src/maven.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/merlin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 235d287

Please sign in to comment.