From: Peter Rabbitson Date: Wed, 13 May 2009 01:02:11 +0000 (+0000) Subject: fix bogus test X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c856f5057698206cbc61a1328e31d95e55ad80e3;p=dbsrgits%2FDBIx-Class-Historic.git fix bogus test --- diff --git a/t/71mysql.t b/t/71mysql.t index 475dc0f..1e81376 100644 --- a/t/71mysql.t +++ b/t/71mysql.t @@ -136,7 +136,7 @@ my $cd = $schema->resultset ('CD')->create ({}); my $producer = $schema->resultset ('Producer')->create ({}); -lives_ok { $cd->set_producers ([ $cd ]) } 'set_relationship doesnt die'; +lives_ok { $cd->set_producers ([ $producer ]) } 'set_relationship doesnt die'; # clean up our mess END {