From b1d4daf638279a880db973dc4f5bde46cf67f5dd Mon Sep 17 00:00:00 2001 From: bmedx Date: Mon, 11 Dec 2017 15:00:49 -0500 Subject: [PATCH] Increase diff output for theses tests to debug potential issues --- openedx/core/djangoapps/catalog/tests/test_utils.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openedx/core/djangoapps/catalog/tests/test_utils.py b/openedx/core/djangoapps/catalog/tests/test_utils.py index 109ad7c379..27be16fd8b 100644 --- a/openedx/core/djangoapps/catalog/tests/test_utils.py +++ b/openedx/core/djangoapps/catalog/tests/test_utils.py @@ -167,6 +167,10 @@ class TestGetProgramsWithType(TestCase): super(TestGetProgramsWithType, self).setUp() self.site = SiteFactory() + # We have seen what seem like flaky tests for these, but can't debug them due to the diff being too large. + # If you fix the flakiness of the tests this could go away as well. + self.maxDiff = None + @mock.patch(UTILS_MODULE + '.get_programs') @mock.patch(UTILS_MODULE + '.get_program_types') def test_get_programs_with_type(self, mock_get_program_types, mock_get_programs):