Skip to content

Commit

Permalink
Fix order of expected and actual output
Browse files Browse the repository at this point in the history
The order of actual and expected output was swapped.

Change-Id: I443e17016821735922a1b037d52c0b7001a54dc5
  • Loading branch information
physikerwelt committed Mar 22, 2017
1 parent 1cb881f commit 71175cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/utils/assert.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function deepEqual(result, expected, message) {
// Temporary remove the large debug output and rely on the IDE features
// console.log('Expected:\n' + JSON.stringify(expected, null, 2));
// console.log('Result:\n' + JSON.stringify(result, null, 2));
assert.equal(expected,result);
assert.equal(result, expected, message);
throw e;
}

Expand Down

0 comments on commit 71175cc

Please sign in to comment.