From ccc720fd39b60157b12bbd3577331efef6b934d1 Mon Sep 17 00:00:00 2001 From: Jake Moshenko <jake@devtable.com> Date: Tue, 20 May 2014 18:26:29 -0400 Subject: [PATCH] Allow diffs to get very large for test cases. --- test/test_api_usage.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_api_usage.py b/test/test_api_usage.py index a1683b372..46df39384 100644 --- a/test/test_api_usage.py +++ b/test/test_api_usage.py @@ -68,6 +68,8 @@ CSRF_TOKEN_KEY = '_csrf_token' CSRF_TOKEN = '123csrfforme' class ApiTestCase(unittest.TestCase): + maxDiff = None + @staticmethod def _add_csrf(without_csrf): parts = urlparse(without_csrf)