diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-07-13 09:51:00 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2017-08-09 17:03:48 +0100 |
commit | e00c75d7f19bc45879c254ea77dce32df825f3a7 (patch) | |
tree | 7fd42ffd93fa244f81a84d8a5ace4f7be03b81c7 /perllib/FixMyStreet/Test.pm | |
parent | 46b9d8989d5ac2f8eedd196d11ceb4baf57728dd (diff) |
Move FixMyStreet::DB to FixMyStreet::DB::Schema.
Store a schema object on FixMyStreet::DB instead.
Diffstat (limited to 'perllib/FixMyStreet/Test.pm')
-rw-r--r-- | perllib/FixMyStreet/Test.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/Test.pm b/perllib/FixMyStreet/Test.pm index add67dfd9..6b6bc02bc 100644 --- a/perllib/FixMyStreet/Test.pm +++ b/perllib/FixMyStreet/Test.pm @@ -8,7 +8,7 @@ use utf8; use Test::More; use FixMyStreet::DB; -my $db = FixMyStreet::DB->storage; +my $db = FixMyStreet::DB->schema->storage; sub import { strict->import; |