Navigation Menu

Skip to content

Commit

Permalink
Use "deepEqual" isntead of "equal" for hash
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Aug 2, 2012
1 parent 8409fd4 commit 9ba7649
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/database-domain.test.js
Expand Up @@ -216,8 +216,8 @@ suite('database', function() {
});

test('id for database (known table)', function() {
assert.equal({ id: domain.id, exists: domain.exists() },
{ id: 'id0123', exists: true });
assert.deepEqual({ id: domain.id, exists: domain.exists() },
{ id: 'id0123', exists: true });
});

test('id for database (unknown, new table)', function() {
Expand Down

0 comments on commit 9ba7649

Please sign in to comment.