From 0db8297693c8e24bb359866c3d8c12f981e04869 Mon Sep 17 00:00:00 2001 From: Martyn Inglis Date: Wed, 24 May 2017 09:59:07 +0100 Subject: [PATCH] Removed print statement --- tests/app/dao/test_notification_usage_dao.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/app/dao/test_notification_usage_dao.py b/tests/app/dao/test_notification_usage_dao.py index c1c668d4c..d4aec8531 100644 --- a/tests/app/dao/test_notification_usage_dao.py +++ b/tests/app/dao/test_notification_usage_dao.py @@ -556,7 +556,6 @@ def test_should_calculate_rate_boundaries_for_billing_query_for_single_relevant_ start_date, end_date = get_financial_year(2016) set_up_rate(notify_db, datetime(2016, 1, 1), 0.016) rate_boundaries = discover_rate_bounds_for_billing_query(start_date, end_date) - print(rate_boundaries) assert len(rate_boundaries) == 1 assert rate_boundaries[0]['start_date'] == start_date assert rate_boundaries[0]['end_date'] == end_date