Renamed DBIx::Class::PK's retrieve() as find()
[dbsrgits/DBIx-Class.git] / t / 08inflate.t
index 4a98949..3ecba70 100644 (file)
@@ -15,7 +15,7 @@ DBICTest::CD->inflate_column( 'year',
 );
 
 # inflation test
-my $cd = DBICTest::CD->retrieve(3);
+my $cd = DBICTest::CD->find(3);
 
 is( ref($cd->year), 'DateTime', 'year is a DateTime, ok' );