Post-merge fixups
[dbsrgits/DBIx-Class.git] / t / run / 10auto.tl
index 3d2a038..7c795f4 100644 (file)
@@ -3,7 +3,8 @@ my $schema = shift;
 
 plan tests => 2;
 
-$schema->class("Artist")->load_components(qw/PK::Auto/);
+$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' } );