diff options
author | Matthew Somerville <matthew@mysociety.org> | 2019-09-19 10:07:12 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2019-10-03 15:53:29 +0100 |
commit | 1ada9ee8ca6ba10bd6b3c7fb02f7b5599972db5c (patch) | |
tree | 894ef51a1eca70bb9a93a25dd0b4d38a0904463b /t/app/controller/report_new.t | |
parent | c73fc63cb5cb516377ed2638bbd607dbd4357bd5 (diff) |
Per-test file email addresses.
Diffstat (limited to 't/app/controller/report_new.t')
-rw-r--r-- | t/app/controller/report_new.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/app/controller/report_new.t b/t/app/controller/report_new.t index 417d91ef9..20eecb50e 100644 --- a/t/app/controller/report_new.t +++ b/t/app/controller/report_new.t @@ -963,7 +963,7 @@ foreach my $test ( title => 'Test Report', detail => 'Test report details.', photo1 => '', - username => $test_email, + username => $user->email, password_sign_in => 'secret2', category => 'Street lighting', } @@ -1347,7 +1347,7 @@ subtest "test report creation for a category that is non public" => sub { title => 'Test Report', detail => 'Test report details.', photo1 => '', - username => 'test-2@example.com', + username => $user->email, name => 'Joe Bloggs', category => 'Street lighting', } @@ -1801,7 +1801,7 @@ subtest "test Hart" => sub { # check that the user has been created/ not changed $user = - FixMyStreet::App->model('DB::User')->find( { email => $test_email } ); + FixMyStreet::App->model('DB::User')->find( { email => $user ? $user->email : $test_email } ); ok $user, "user found"; # find the report |