fix test to use qw as (so far as I can see) originally intended
[dbsrgits/DBIx-Class.git] / t / 96_is_deteministic_value.t
index 7828ffb..d71886b 100644 (file)
@@ -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);