Fix test suite to work again with DBICTEST_SQLITE_USE_FILE
Peter Rabbitson [Tue, 17 Mar 2015 12:06:13 +0000 (13:06 +0100)]
( partial cherry-pick of ee573365 )

t/prefetch/correlated.t
t/sqlmaker/mysql.t

index 6452a94..90bd026 100644 (file)
@@ -138,6 +138,8 @@ is_same_sql_bind(
   'Expected SQL on correlated realiased subquery'
 );
 
+$schema->storage->disconnect;
+
 # test for subselect identifier leakage
 # NOTE - the hodge-podge mix of literal and regular identifuers is *deliberate*
 for my $quote_names (0,1) {
index 2755a3d..e0cd4fc 100644 (file)
@@ -3,6 +3,9 @@ use warnings;
 
 use Test::More;
 
+# Fixed properly in mainline
+BEGIN { delete $ENV{DBICTEST_SQLITE_USE_FILE} }
+
 use lib qw(t/lib);
 use DBICTest;
 use DBICTest::Schema;