tests: Set maxDiff to None unconditionally.

This commit is contained in:
Tim Abbott 2017-03-21 07:34:16 -07:00
parent 8041ebf579
commit a474f4359d
2 changed files with 3 additions and 2 deletions

View File

@ -32,8 +32,6 @@ class TestStatsEndpoint(ZulipTestCase):
self.assert_in_response("Zulip Analytics for", result)
class TestGetChartData(ZulipTestCase):
maxDiff = None # type: int
def setUp(self):
# type: () -> None
self.realm = get_realm('zulip')

View File

@ -84,6 +84,9 @@ class UploadSerializeMixin(SerializeMixin):
super(UploadSerializeMixin, cls).setUpClass(*args, **kwargs)
class ZulipTestCase(TestCase):
# Ensure that the test system just shows us diffs
maxDiff = None # type: int
'''
WRAPPER_COMMENT: