diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-12-14 19:07:08 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-12-19 14:43:26 +0000 |
commit | ddf9dbdbf6486c781ca4a5822614b0b7cee2c062 (patch) | |
tree | 09c12affc3390138b03292d3f90810287b4941d0 /t/app/sendreport | |
parent | da29e8a75eaa92e98807ad89d29d3d1f3c01bc14 (diff) |
Allow bodies to span multiple area IDs, and areas can be covered by more than one body.
Diffstat (limited to 't/app/sendreport')
-rw-r--r-- | t/app/sendreport/email.t | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/app/sendreport/email.t b/t/app/sendreport/email.t index 17abd6243..106a31c42 100644 --- a/t/app/sendreport/email.t +++ b/t/app/sendreport/email.t @@ -14,7 +14,8 @@ use mySociety::Locale; my $e = FixMyStreet::SendReport::Email->new(); -my $params = { id => 1000, area_id => 1000, name => 'Council of the Thousand' }; +# area id 1000 +my $params = { id => 1000, name => 'Council of the Thousand' }; my $body = FixMyStreet::App->model('DB::Body')->find_or_create($params); ok $body, "found/created body"; |