Allow diffs to get very large for test cases.
This commit is contained in:
parent
b493168a8b
commit
ccc720fd39
1 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||
|
|
Reference in a new issue