[svn:parrot] r37148 - trunk/t/steps
jkeenan at svn.parrot.org
jkeenan at svn.parrot.org
Sat Mar 7 00:35:49 UTC 2009
Author: jkeenan
Date: Sat Mar 7 00:35:48 2009
New Revision: 37148
URL: https://trac.parrot.org/parrot/changeset/37148
Log:
_evaluate_cc_run() takes 4 arguments. Provide the 2 missing arguments to each test of this method.
Modified:
trunk/t/steps/auto_neg_0-01.t
Modified: trunk/t/steps/auto_neg_0-01.t
==============================================================================
--- trunk/t/steps/auto_neg_0-01.t Sat Mar 7 00:30:12 2009 (r37147)
+++ trunk/t/steps/auto_neg_0-01.t Sat Mar 7 00:35:48 2009 (r37148)
@@ -61,17 +61,19 @@
$step = test_step_constructor_and_description($conf);
my $d_neg_0;
+my $orig_has_neg_0 = 0;
+my $verbose = $conf->data->get('verbose');
$d_neg_0 = '-0';
-ok( $step->_evaluate_cc_run($conf, $d_neg_0),
+ok( $step->_evaluate_cc_run($conf, $d_neg_0, $orig_has_neg_0, $verbose),
'_evaluate_cc_run() completed satisfactorily' );
is( $step->result(), 'yes', 'Got expected result');
$d_neg_0 = '0';
-ok( !$step->_evaluate_cc_run($conf, $d_neg_0),
+ok( !$step->_evaluate_cc_run($conf, $d_neg_0, $orig_has_neg_0, $verbose),
'_evaluate_cc_run() completed satisfactorily' );
is( $step->result(), 'no', 'Got expected result' );
More information about the parrot-commits
mailing list