X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F96_is_deteministic_value.t;h=d71886ba600d9c8700b2daa8bbce1a7f8d2be641;hb=b8a270548277cf47dbe171d66e9f1352e5d1dc0e;hp=7828ffb52cb9b9238205b8746717ac00a6f36283;hpb=4bea1fe7a2b4827947b3d0d64b16a0f2c5e594bd;p=dbsrgits%2FDBIx-Class.git diff --git a/t/96_is_deteministic_value.t b/t/96_is_deteministic_value.t index 7828ffb..d71886b 100644 --- a/t/96_is_deteministic_value.t +++ b/t/96_is_deteministic_value.t @@ -58,7 +58,7 @@ my $cd_rs = $schema->resultset('CD'); { my $artist; lives_ok { - $artist = $artist_rs->search({ name => [ q/ some stupid names here/]}) + $artist = $artist_rs->search({ name => [ qw(some stupid names here) ]}) ->create({artistid => undef}); }; is($artist->name, undef);