rename occurences of belongs_to in tests
[dbsrgits/DBIx-Class.git] / t / multi_create / standard.t
index 6eb2b9a..2f4e53d 100644 (file)
@@ -22,7 +22,7 @@ lives_ok ( sub {
   isa_ok($cd, 'DBICTest::CD', 'Created CD object');
   isa_ok($cd->artist, 'DBICTest::Artist', 'Created related Artist');
   is($cd->artist->name, 'Fred Bloggs', 'Artist created correctly');
-}, 'simple create + parent (the stuff $rs belongs_to) ok');
+}, 'simple create + parent (the stuff $rs refers_to) ok');
 
 lives_ok ( sub {
   my $bm_rs = $schema->resultset('Bookmark');