Renamed DBIx::Class::PK's retrieve() as find()
[dbsrgits/DBIx-Class-Historic.git] / t / 05multipk.t
index 6aff06f..e4d364a 100644 (file)
@@ -6,5 +6,5 @@ use lib qw(t/lib);
 
 use_ok('DBICTest');
 
-ok(DBICTest::FourKeys->retrieve(1,2,3,4), "retrieve multiple pks without hash");
-ok(DBICTest::FourKeys->retrieve(5,4,3,6), "retrieve multiple pks without hash");
\ No newline at end of file
+ok(DBICTest::FourKeys->find(1,2,3,4), "find multiple pks without hash");
+ok(DBICTest::FourKeys->find(5,4,3,6), "find multiple pks without hash");