Exclude tables in the Oracle Recycle Bin (RT#128149)
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 21misc_fatal.t
index a1ce752..c50fc4f 100644 (file)
@@ -1,4 +1,5 @@
 use strict;
+use warnings;
 use Test::More;
 use lib qw(t/lib);
 use make_dbictest_db;
@@ -21,6 +22,6 @@ plan tests => 1;
 eval { DBICTest::Schema->connect($make_dbictest_db::dsn) };
 like(
     $@,
-    qr/Could not load storage_type loader "DBIx::Class::Schema::Loader::xyzzy": /,
+    qr/Could not load loader_class "DBIx::Class::Schema::Loader::xyzzy": /,
     'Bad storage type dies correctly'
 );