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