summaryrefslogtreecommitdiff
path: root/std/testing/asserts.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/testing/asserts.ts')
-rw-r--r--std/testing/asserts.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/testing/asserts.ts b/std/testing/asserts.ts
index 50c45c6ca..ea15aa6bc 100644
--- a/std/testing/asserts.ts
+++ b/std/testing/asserts.ts
@@ -269,8 +269,8 @@ export function assertStringContains(
* If not then thrown.
*/
export function assertArrayContains(
- actual: unknown[],
- expected: unknown[],
+ actual: ArrayLike<unknown>,
+ expected: ArrayLike<unknown>,
msg?: string
): void {
const missing: unknown[] = [];