diff options
author | Dave Arter <davea@mysociety.org> | 2019-10-18 13:58:35 +0100 |
---|---|---|
committer | Dave Arter <davea@mysociety.org> | 2019-12-09 12:48:12 +0000 |
commit | b150f8ac189c9caac3f9853c2c4116e9cb4db44e (patch) | |
tree | f64b6cc9623acb8d65c7e3fc078ceac029365963 /t/Mock/MapIt.pm | |
parent | 15b7b2d146b337894f318c3a20ea03b400c0429d (diff) |
Pre-filter ‘all reports’ by area for inspectors
Diffstat (limited to 't/Mock/MapIt.pm')
-rw-r--r-- | t/Mock/MapIt.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/Mock/MapIt.pm b/t/Mock/MapIt.pm index f7dd2eb83..3b36b52f4 100644 --- a/t/Mock/MapIt.pm +++ b/t/Mock/MapIt.pm @@ -119,6 +119,8 @@ sub dispatch_request { $self->output({2650 => {parent_area => undef, id => 2650, name => "Aberdeen Council", type => "UTA"}}); } elsif ($areas eq 'GRE') { $self->output({2493 => {parent_area => undef, id => 2493, name => "Greenwich Borough Council", type => "LBO"}}); + } elsif ($areas eq 60705) { + $self->output({60705 => {parent_area => 2245, id => 60705, name => "Trowbridge", type => "CPC"}}); } }, |