From: Dagfinn Ilmari Mannsåker Date: Tue, 14 Aug 2012 11:46:19 +0000 (+0200) Subject: Fix broken reset attempt X-Git-Tag: v0.11013_01~13 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=90e0aae368b8cc69afb81825f1dd323c2757c017;p=dbsrgits%2FSQL-Translator.git Fix broken reset attempt --- diff --git a/t/07p_args.t b/t/07p_args.t index 51ffbec..7aa2f06 100644 --- a/t/07p_args.t +++ b/t/07p_args.t @@ -46,7 +46,7 @@ is(scalar @fields, 4, "right number of fields"); # # Blow away the existing schema object. # -$tr->schema (undef); +$tr->reset; # Now, pass parser_args indirectly... $tr->parser(\&silly_parser, { delimiter => "\t" });