diff options
author | Matthew Somerville <matthew@mysociety.org> | 2016-01-27 11:38:11 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2016-01-27 11:38:11 +0000 |
commit | 2679b30e530861ba7c2bef6f36a60242872bd6a7 (patch) | |
tree | 7cec1bc797b30f7efb8b4eae0549bcebd1c96e07 /t/app/controller/report_import.t | |
parent | b8083a462aebf542f6f39c4201e1f09248b7e0e7 (diff) |
Move test mocks to their own directory.
Diffstat (limited to 't/app/controller/report_import.t')
-rw-r--r-- | t/app/controller/report_import.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/app/controller/report_import.t b/t/app/controller/report_import.t index 1d6695996..220ebaac5 100644 --- a/t/app/controller/report_import.t +++ b/t/app/controller/report_import.t @@ -3,7 +3,7 @@ use warnings; use Test::More; use LWP::Protocol::PSGI; -use t::MapIt; +use t::Mock::MapIt; use FixMyStreet::TestMech; use FixMyStreet::App; use Web::Scraper; @@ -92,7 +92,7 @@ subtest "Test creating bad partial entries" => sub { }; subtest "Submit a correct entry" => sub { - LWP::Protocol::PSGI->register(t::MapIt->run_if_script, host => 'mapit.uk'); + LWP::Protocol::PSGI->register(t::Mock::MapIt->run_if_script, host => 'mapit.uk'); $mech->get_ok('/import'); |