summaryrefslogtreecommitdiff
path: root/tests/testdata/jsr/registry/@std/assert/0.220.1/assert_equals.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/jsr/registry/@std/assert/0.220.1/assert_equals.ts')
-rw-r--r--tests/testdata/jsr/registry/@std/assert/0.220.1/assert_equals.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/testdata/jsr/registry/@std/assert/0.220.1/assert_equals.ts b/tests/testdata/jsr/registry/@std/assert/0.220.1/assert_equals.ts
deleted file mode 100644
index bd58194d0..000000000
--- a/tests/testdata/jsr/registry/@std/assert/0.220.1/assert_equals.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-// deno-lint-ignore-file
-export function assertEquals<T>(
- actual: T,
- expected: T,
- msg?: string,
- options: { formatter?: (value: unknown) => string } = {},
-) {
- return true;
-}