aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xt/Cobrand.t2
-rwxr-xr-xt/Page.t6
2 files changed, 4 insertions, 4 deletions
diff --git a/t/Cobrand.t b/t/Cobrand.t
index 3a397a897..f6c2e9c87 100755
--- a/t/Cobrand.t
+++ b/t/Cobrand.t
@@ -11,7 +11,7 @@
use strict;
use warnings;
-use Test::More tests => 62;
+use Test::More tests => 59;
use Test::Exception;
use Error qw(:try);
diff --git a/t/Page.t b/t/Page.t
index 30925ff1b..d4ccc9f3d 100755
--- a/t/Page.t
+++ b/t/Page.t
@@ -11,7 +11,7 @@
use strict;
use warnings;
-use Test::More tests => 15;
+use Test::More tests => 13;
use Test::Exception;
use FindBin;
@@ -42,8 +42,8 @@ sub test_geocode_string() {
# geocode a straightforward string, expect success
my ($easting, $northing, $error) = FixMyStreet::Geocode::string('Buckingham Palace', $q);
- ok($easting == 529044, 'example easting generated') or diag("Got $easting");
- ok($northing == 179619, 'example northing generated') or diag("Got $northing");
+ ok($easting == 529068, 'example easting generated') or diag("Got $easting");
+ ok($northing == 179684, 'example northing generated') or diag("Got $northing");
ok(! defined($error), 'should not generate error for simple example') or diag("Got $error");
# expect a failure message for Northern Ireland
($easting, $northing, $error) = FixMyStreet::Geocode::string('Falls Road, Belfast', $q);