Stop using deprecated regex syntax
Peter Rabbitson [Tue, 11 Dec 2012 11:01:25 +0000 (12:01 +0100)]
t/count/distinct.t

index 64fa856..1b44b9a 100644 (file)
@@ -80,7 +80,7 @@ for my $get_count (
 
 throws_ok(
   sub { my $row = $schema->resultset('Tag')->search({}, { select => { distinct => [qw/tag cd/] } })->first },
-  qr/select => { distinct => \.\.\. } syntax is not supported for multiple columns/,
+  qr/\Qselect => { distinct => ... } syntax is not supported for multiple columns/,
   'throw on unsupported syntax'
 );