X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=t%2Flib%2FDBSchema%2FResult%2FDvdtag.pm;h=d17066aff0e82b4b5b4005a5d15075d58be3d652;hb=f6641f7ade5a9b4227feef8a538228fcea80a5b2;hp=77521bc87ded50f49a40654df5aab0a54fa0efdb;hpb=424363ed169eae916480670bea2363322285855a;p=chaz%2Fp5-DBIx-Class-ResultSet-RecursiveUpdate diff --git a/t/lib/DBSchema/Result/Dvdtag.pm b/t/lib/DBSchema/Result/Dvdtag.pm index 77521bc..d17066a 100644 --- a/t/lib/DBSchema/Result/Dvdtag.pm +++ b/t/lib/DBSchema/Result/Dvdtag.pm @@ -14,8 +14,8 @@ __PACKAGE__->add_columns( "tag" => { data_type => 'integer' }, ); __PACKAGE__->set_primary_key("dvd", "tag"); -__PACKAGE__->belongs_to("dvd", "Dvd", { id => "dvd" }); -__PACKAGE__->belongs_to("tag", "Tag", { id => "tag" }); +__PACKAGE__->belongs_to("dvd", "DBSchema::Result::Dvd", { id => "dvd" }); +__PACKAGE__->belongs_to("tag", "DBSchema::Result::Tag", { id => "tag" }); 1;