Using t.eq to better show the issue (see #162)

This commit is contained in:
ahocevar
2012-01-25 11:48:18 +01:00
parent 2f66031603
commit ca8a801ff0

View File

@@ -80,7 +80,7 @@
strategy.update({force: true});
var from = map.getProjectionObject();
var to = layer.projection;
t.ok(strategy.bounds.equals(map.getExtent().transform(from, to)), "[force update different proj] bounds transformed");
t.eq(strategy.bounds.toString(), map.getExtent().transform(from, to).toString(), "[force update different proj] bounds transformed");
}