From 5f91aa98799ac4a9789cc9f7baa1c97d45d87b2c Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Mon, 22 Jan 2018 07:48:59 +0100 Subject: [PATCH] Remove print in test --- refunding/tests.py | 1 - 1 file changed, 1 deletion(-) diff --git a/refunding/tests.py b/refunding/tests.py index d7b8563..618d537 100644 --- a/refunding/tests.py +++ b/refunding/tests.py @@ -19,7 +19,6 @@ class MonthBeforeJanuaryTestCase(TestCase): response = c.get(reverse('new_refund')) self.assertLess(response.status_code, 300) - print(response.content) expected_date = datetime.date.today().isoformat() self.assertIn(expected_date,response.content.decode('utf-8'))