From: Peter Rabbitson Date: Sun, 27 Feb 2011 16:11:52 +0000 (+0100) Subject: Fix RT#64728 X-Git-Tag: v0.11008~16 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f8a4f3b4be568ed3148e7cf8b89939baea021a36;p=dbsrgits%2FSQL-Translator.git Fix RT#64728 --- diff --git a/Changes b/Changes index 0228f43..16cb38e 100644 --- a/Changes +++ b/Changes @@ -3,6 +3,7 @@ * made PostgreSQL producer consistent with other producers in terms of quoting and allowing functions in constraints and indices * Add distinction of autoinc and regular primary keys to the GraphViz producer +* Fix odd invocation of Test::More::pass() in t/36-filters.t (RT#64728) # ---------------------------------------------------------- # 0.11007 2010-11-30 diff --git a/t/36-filters.t b/t/36-filters.t index cfda7ac..f692065 100644 --- a/t/36-filters.t +++ b/t/36-filters.t @@ -6,7 +6,9 @@ package SQL::Translator::Filter::Ok; use strict; -sub filter { Test::More::pass(@_) } +sub filter { Test::More::pass( + 'Filter called with args: ' . join ', ', @_ +) } # Hack to allow sqlt to see our module as it wasn't loaded from a .pm $INC{'SQL/Translator/Filter/Ok.pm'} = 'lib/SQL/Translator/Filter/Ok.pm';