From: Justin Guenther Date: Thu, 6 Jul 2006 23:41:36 +0000 (+0000) Subject: fixed a typo in a regexp X-Git-Tag: v0.07002~75^2~43 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fb10283ee881f43f14638133c6d0b41a86fd1a2b;p=dbsrgits%2FDBIx-Class.git fixed a typo in a regexp --- diff --git a/t/76joins.t b/t/76joins.t index a630169..70db683 100644 --- a/t/76joins.t +++ b/t/76joins.t @@ -328,7 +328,7 @@ eval { })->search_related('tracks')->first; }; -like( $sql, qr/^SELECT tracks.trackid/, "collapsed join didn't add _2 to alias" ); +like( $sql, qr/^SELECT tracks\.trackid/, "collapsed join didn't add _2 to alias" ); $schema->storage->debug($orig_debug); $schema->storage->debugobj->callback(undef);