This commit is contained in:
Steve Gravrock
2024-11-09 13:17:32 -08:00
parent bd9a3b2305
commit 29551ba4f3

View File

@@ -99,7 +99,8 @@ describe('toEqual', function() {
it('reports mismatches as well as missing or extra properties', function() {
const actual = { x: { z: 2 } },
expected = { x: { y: 1, z: 3 } },
message = 'Expected $.x to have properties\n' +
message =
'Expected $.x to have properties\n' +
' y: 1\n' +
'Expected $.x.z = 2 to equal 3.';