From e65fac5f530deff381f32b9eaf248b0955b2bdaa Mon Sep 17 00:00:00 2001 From: Patrick Arlt Date: Tue, 17 Nov 2015 09:36:32 -0800 Subject: [PATCH] 1.0.0 --- test/virtual-grid.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/virtual-grid.js b/test/virtual-grid.js index cf6f31c..7c1f96d 100644 --- a/test/virtual-grid.js +++ b/test/virtual-grid.js @@ -54,12 +54,12 @@ test('should create cells when the map zooms in', function (t) { grid.addTo(map); grid.on('cellsupdated', function () { - t.ok(grid.cellLeave.getCall(0).args[1].equals(L.point([0,0,1]))); + t.ok(grid.cellLeave.getCall(0).args[1].equals(L.point([0, 0, 1]))); - t.ok(grid.createCell.getCall(1).args[1].equals(L.point([0,0,2]))); - t.ok(grid.createCell.getCall(2).args[1].equals(L.point([1,0,2]))); - t.ok(grid.createCell.getCall(3).args[1].equals(L.point([0,1,2]))); - t.ok(grid.createCell.getCall(4).args[1].equals(L.point([1,1,2]))); + t.ok(grid.createCell.getCall(1).args[1].equals(L.point([0, 0, 2]))); + t.ok(grid.createCell.getCall(2).args[1].equals(L.point([1, 0, 2]))); + t.ok(grid.createCell.getCall(3).args[1].equals(L.point([0, 1, 2]))); + t.ok(grid.createCell.getCall(4).args[1].equals(L.point([1, 1, 2]))); map.remove(); });