From 29551ba4f31f862e26683c0543162eb3da1b178f Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Sat, 9 Nov 2024 13:17:32 -0800 Subject: [PATCH] Prettier --- spec/core/matchers/toEqualSpec.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spec/core/matchers/toEqualSpec.js b/spec/core/matchers/toEqualSpec.js index eeec06dc..868bd2f5 100644 --- a/spec/core/matchers/toEqualSpec.js +++ b/spec/core/matchers/toEqualSpec.js @@ -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.';