From ca8a801ff0e9f65aca6009f0863cf9b5be74c6da Mon Sep 17 00:00:00 2001 From: ahocevar Date: Wed, 25 Jan 2012 11:48:18 +0100 Subject: [PATCH] Using t.eq to better show the issue (see #162) --- tests/Strategy/BBOX.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Strategy/BBOX.html b/tests/Strategy/BBOX.html index 026a13d474..c0ff4ff401 100644 --- a/tests/Strategy/BBOX.html +++ b/tests/Strategy/BBOX.html @@ -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"); }