From: Matt S Trout <mst@shadowcat.co.uk>
Date: Sun, 17 Nov 2013 03:01:29 +0000 (+0000)
Subject: fix test to use qw as (so far as I can see) originally intended
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1de540669f6faba3ee34262e4de8bc21fb48e1a9;p=dbsrgits%2FDBIx-Class-Historic.git

fix test to use qw as (so far as I can see) originally intended
---

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);