Use identity projection in tests

This commit is contained in:
John Firebaugh
2013-01-17 10:43:04 -08:00
parent f64c2df17f
commit 8564279926
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
describe("iD.svg.Areas", function () {
var surface,
projection = d3.geo.mercator(),
projection = Object,
filter = d3.functor(true);
beforeEach(function () {

View File

@@ -1,6 +1,6 @@
describe("iD.svg.Points", function () {
var surface,
projection = d3.geo.mercator(),
projection = Object,
filter = d3.functor(true);
beforeEach(function () {

View File

@@ -1,6 +1,6 @@
describe("iD.svg.Vertices", function () {
var surface,
projection = d3.geo.mercator(),
projection = Object,
filter = d3.functor(true);
beforeEach(function () {