Skip to content

Commit

Permalink
equal for string compare
Browse files Browse the repository at this point in the history
  • Loading branch information
meirish committed Jul 23, 2018
1 parent 4434a0d commit 84c2af2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/tests/unit/lib/kv-object-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ toJSONTests.forEach(function([name, includeBlanks, input, output]) {
let expected = JSON.stringify(output, null, 2);
let data = KVObject.create({ content: [] }).fromJSON(input);
let result = data.toJSONString(includeBlanks);
assert.deepEqual(result, expected, 'has expected output string');
assert.equal(result, expected, 'has expected output string');
});
});

Expand Down

0 comments on commit 84c2af2

Please sign in to comment.