X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F76joins.t;h=b172d2986e79753398b33f55d97fc75e0722065e;hb=ca83d811f3ce60ebb819ce9ad54179837f6157c6;hp=538699f6d49d982c25aa66a1c45ec26d158665f3;hpb=36d18cd952538e9217aaf2cfd2568a9409d46e92;p=dbsrgits%2FDBIx-Class.git diff --git a/t/76joins.t b/t/76joins.t index 538699f..b172d29 100644 --- a/t/76joins.t +++ b/t/76joins.t @@ -105,7 +105,7 @@ my @j6 = ( [ { father => 'person' }, { 'father.person_id' => { '!=', '42' } }, ], [ { mother => 'person' }, { 'mother.person_id' => 'child.mother_id' } ], ); -$match = qr/^\QHASH reference arguments are not supported in JOINS - try using \"..." instead\E/; +$match = qr/^HASH reference arguments are not supported in JOINS - try using "\.\.\." instead/; eval { $sa->_recurse_from(@j6) }; like( $@, $match, 'join 6 (HASH reference for ON statement dies) ok' );