Tweaked columns_info_for test to get around SQLite inconsistencies
[dbsrgits/DBIx-Class-Historic.git] / t / run / 10auto.tl
index 6e474a5..7c795f4 100644 (file)
@@ -4,6 +4,7 @@ my $schema = shift;
 plan tests => 2;
 
 $schema->class("Artist")->load_components(qw/PK::Auto::SQLite/);
+  # Should just be PK::Auto but this ensures the compat shim works
 
 # add an artist without primary key to test Auto
 my $artist = $schema->resultset("Artist")->create( { name => 'Auto' } );