aboutsummaryrefslogtreecommitdiffstats
path: root/t/open311.t
diff options
context:
space:
mode:
Diffstat (limited to 't/open311.t')
-rw-r--r--t/open311.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/open311.t b/t/open311.t
index d66a9c2e5..358a58a44 100644
--- a/t/open311.t
+++ b/t/open311.t
@@ -371,11 +371,11 @@ for my $test (
if ( $test->{includes_latlong} ) {
ok $c->param('lat'), 'has latitude';
ok $c->param('long'), 'has longitude';
- is $c->param('address'), undef, 'no address';
+ is $c->param('address_string'), undef, 'no address';
} else {
is $c->param('lat'), undef, 'no latitude';
is $c->param('long'), undef, 'no latitude';
- is $c->param('address'), $test->{postcode}, 'has address';
+ is $c->param('address_string'), $test->{postcode}, 'has address';
}
};
}