diff --git a/assert/assert_not_strict_equals.ts b/assert/assert_not_strict_equals.ts index 8676d6a005d4..2423a07766f6 100644 --- a/assert/assert_not_strict_equals.ts +++ b/assert/assert_not_strict_equals.ts @@ -23,7 +23,7 @@ export function assertNotStrictEquals( const msgSuffix = msg ? `: ${msg}` : "."; throw new AssertionError( - `Expected "actual" to be strictly unequal to: ${ + `Expected "actual" to not be strictly equal to: ${ format(actual) }${msgSuffix}\n`, );