diff options
Diffstat (limited to 't/app/sendreport/email.t')
-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"; |