Merge pull request #6209 from ahocevar/not-to-be

Test array with to.eql(), not to.be.eql()
This commit is contained in:
Andreas Hocevar
2016-12-06 16:25:08 +01:00
committed by GitHub

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]);
});
});