Test array with to.eql(), not to.be.eql()

This commit is contained in:
Andreas Hocevar
2016-12-06 16:03:35 +01:00
parent 89ebf0a182
commit 132be598e7

View File

@@ -153,8 +153,8 @@ describe('ol.render.canvas.ReplayGroup', function() {
replay.replay(context, 2, transform, 0, {});
expect(lineDashCount).to.be(1);
expect(style2.getStroke().getLineDash()).to.be.eql([3, 6]);
expect(lineDash).to.be.eql([6, 12]);
expect(style2.getStroke().getLineDash()).to.eql([3, 6]);
expect(lineDash).to.eql([6, 12]);
});
});