Fix building on perls with no . in @INC
[dbsrgits/DBIx-Class.git] / t / 39load_namespaces_1.t
index c6355a7..f7fb08e 100644 (file)
@@ -11,7 +11,7 @@ my $warnings;
 eval {
     local $SIG{__WARN__} = sub { $warnings .= shift };
     package DBICNSTest;
-    use base qw/DBIx::Class::Schema/;
+    use base qw/DBICTest::BaseSchema/;
     __PACKAGE__->load_namespaces;
 };
 ok(!$@, 'load_namespaces doesnt die') or diag $@;