Skip to content

Commit

Permalink
Use correct assertation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Kaske committed Nov 30, 2017
1 parent 7d49e80 commit 4692510
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/attributes.html
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@

test('change object attribute to foreign type', function() {
element.setAttribute('object', 'The quick brown fox');
assert.deepEqual(element.object, 'The quick brown fox');
assert.strictEqual(element.object, 'The quick brown fox');
});

test('change array attribute', function() {
Expand Down Expand Up @@ -247,7 +247,7 @@

test('change object attribute to foreign type', function() {
element.setAttribute('object', 'The quick brown fox');
assert.deepEqual(element.object, 'The quick brown fox');
assert.strictEqual(element.object, 'The quick brown fox');
});

test('change array attribute', function() {
Expand Down

0 comments on commit 4692510

Please sign in to comment.