Fix RT#64728
Peter Rabbitson [Sun, 27 Feb 2011 16:11:52 +0000 (17:11 +0100)]
Changes
t/36-filters.t

diff --git a/Changes b/Changes
index 0228f43..16cb38e 100644 (file)
--- 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
index cfda7ac..f692065 100644 (file)
@@ -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';