diff options
Diffstat (limited to 't/cobrand/two_tier.t')
-rw-r--r-- | t/cobrand/two_tier.t | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/t/cobrand/two_tier.t b/t/cobrand/two_tier.t index 97bbccc01..c8a16ea9a 100644 --- a/t/cobrand/two_tier.t +++ b/t/cobrand/two_tier.t @@ -1,8 +1,4 @@ -use strict; -use warnings; -use Test::More; - -use FixMyStreet; +use FixMyStreet::Test; use FixMyStreet::Cobrand; my @cobrands = ( @@ -19,8 +15,8 @@ FixMyStreet::override_config { for my $c (@cobrands) { my ($m, $id) = @$c; my $cobrand = FixMyStreet::Cobrand->get_class_for_moniker($m); - my $council_id = $cobrand->council_id; - is $council_id, $id, "council_id for $m"; + my $council_area_id = $cobrand->council_area_id; + is $council_area_id, $id, "council_area_id for $m"; } }; |