add ::DBI::_is_integer_type and use for SQLite
[dbsrgits/DBIx-Class.git] / t / ordered / cascade_delete.t
index 8a95420..45379a6 100644 (file)
@@ -1,5 +1,5 @@
 use strict;
-use warnings;  
+use warnings;
 
 use Test::More;
 use Test::Exception;
@@ -13,9 +13,7 @@ my $schema = DBICTest->init_schema();
 plan tests => 1;
 
 {
-  my $artist = $schema->resultset ('Artist')->search ({}, { rows => 1})->single, # braindead sqlite
-
-  $schema->storage->debug (1);
+  my $artist = $schema->resultset ('Artist')->search ({}, { rows => 1})->single; # braindead sqlite
   my $cd = $schema->resultset ('CD')->create ({
     artist => $artist,
     title => 'Get in order',