Skip to content

Commit

Permalink
[Tests] fix assertion message (followup to #11)
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Feb 20, 2016
1 parent b2faa62 commit adc9c0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/why.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,12 +232,12 @@ test('objects', function (t) {
st.equal(
isEqualWhy({ a: 42, b: 0 }, { a: 42 }),
'first argument has key "b"; second does not',
'first hash missing a key is not equal'
'second hash missing a key is not equal'
);
st.equal(
isEqualWhy({ a: 42 }, { a: 42, b: 0 }),
'second argument has key "b"; first does not',
'second hash missing a key is not equal'
'first hash missing a key is not equal'
);

st.equal(
Expand Down

0 comments on commit adc9c0a

Please sign in to comment.