projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
6e22e62
)
fix test to use qw as (so far as I can see) originally intended
Matt S Trout [Sun, 17 Nov 2013 03:01:29 +0000 (
03:01
+0000)]
t/96_is_deteministic_value.t
patch
|
blob
|
blame
|
history
diff --git
a/t/96_is_deteministic_value.t
b/t/96_is_deteministic_value.t
index
7828ffb
..
d71886b
100644
(file)
--- 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);