Fix SVG parse errors in specs (fixes #2012)

This commit is contained in:
John Firebaugh
2013-11-22 11:16:08 -08:00
parent 4b3db596d7
commit cdd9f8ba5f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
describe("iD.svg.Areas", function () {
var surface,
projection = d3.geo.projection(function(x) { return x; })
projection = d3.geo.projection(function(x, y) { return [x, y]; })
.clipExtent([[0, 0], [Infinity, Infinity]]),
all = d3.functor(true),
none = d3.functor(false);
+1 -1
View File
@@ -1,6 +1,6 @@
describe("iD.svg.Lines", function () {
var surface,
projection = d3.geo.projection(function(x) { return x; })
projection = d3.geo.projection(function(x, y) { return [x, y]; })
.clipExtent([[0, 0], [Infinity, Infinity]]),
filter = d3.functor(true);