X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fmulti_create%2Fm2m.t;h=26934c9fe7d07137a6382995a037c5ccfae3fc82;hb=3f5b99fea8b445c7a61057f4210a715ffb8e677e;hp=4275f586f52e4b601a3abfcc601e9f3a77a988c6;hpb=577ef680ceebff618b85a41dec6177074f51b76c;p=dbsrgits%2FDBIx-Class.git diff --git a/t/multi_create/m2m.t b/t/multi_create/m2m.t index 4275f58..26934c9 100644 --- a/t/multi_create/m2m.t +++ b/t/multi_create/m2m.t @@ -23,7 +23,7 @@ lives_ok ( sub { my $cd2 = $schema->resultset('CD')->search ( { cdid => { '!=', $cd->cdid } }, {rows => 1} )->single; # retrieve a cd different from the first $cd2->add_to_producers ({name => 'new m2m producer'}); # attach to an existing producer - ok ($cd2->producers->find ({name => 'new m2m producer'}), 'Exsiting producer attached to existing cd'); + ok ($cd2->producers->find ({name => 'new m2m producer'}), 'Existing producer attached to existing cd'); }, 'Test far-end find_or_create over many_to_many');