From: Alexander Hartmaier Date: Mon, 29 Jun 2009 09:02:17 +0000 (+0000) Subject: fixed typo in test X-Git-Tag: v0.08108~50 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a6866b9b686be40e9cc70cdf67c436c6138f75f5;p=dbsrgits%2FDBIx-Class.git fixed typo in test --- 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');