Use eql instead of equalArray

This commit is contained in:
Tom Payne
2013-04-30 18:21:58 +02:00
parent fcc079a5f2
commit efccede678
5 changed files with 62 additions and 62 deletions

View File

@@ -32,8 +32,8 @@ describe('ol.structs.PriorityQueue', function() {
expect(function() {
pq.assertValid();
}).not.to.throwException();
expect(pq.elements_).to.equalArray([0]);
expect(pq.priorities_).to.equalArray([0]);
expect(pq.elements_).to.eql([0]);
expect(pq.priorities_).to.eql([0]);
});
it('maintains the pq property while elements are enqueued', function() {