From 2bd0d6c5e31cc91a27625e1c8897bf99901ef930 Mon Sep 17 00:00:00 2001 From: andersonfrailey Date: Tue, 23 May 2017 12:57:55 -0400 Subject: [PATCH] fix test --- taxcalc/tests/test_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/taxcalc/tests/test_utils.py b/taxcalc/tests/test_utils.py index 6549f6f02..7a28213ae 100644 --- a/taxcalc/tests/test_utils.py +++ b/taxcalc/tests/test_utils.py @@ -441,7 +441,8 @@ def test_diff_table_sum_row(puf_1991, weights_1991): groupby='small_income_bins') tdiff2 = create_difference_table(calc1.records, calc2.records, groupby='large_income_bins') - non_digit_cols = ['mean', 'perc_inc', 'perc_cut', 'share_of_change'] + non_digit_cols = ['mean', 'perc_inc', 'perc_cut', 'share_of_change', + 'aftertax_perc'] digit_cols = [x for x in tdiff1.columns.tolist() if x not in non_digit_cols] assert np.allclose(tdiff1[digit_cols][-1:], tdiff2[digit_cols][-1:])