From feb3e5f0a582093496473fcfd2ab4e7b9ea89954 Mon Sep 17 00:00:00 2001 From: jinder1s Date: Wed, 9 Oct 2019 10:58:23 -0400 Subject: [PATCH] calling assertCountEqual --- common/djangoapps/pipeline_mako/tests/test_render.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/djangoapps/pipeline_mako/tests/test_render.py b/common/djangoapps/pipeline_mako/tests/test_render.py index f49f0500d0..e3a1d784ec 100644 --- a/common/djangoapps/pipeline_mako/tests/test_render.py +++ b/common/djangoapps/pipeline_mako/tests/test_render.py @@ -39,7 +39,7 @@ class RequireJSPathOverridesTest(TestCase): def test_requirejs_path_overrides(self): result = render_require_js_path_overrides(self.OVERRIDES) # To make the string comparision easy remove the whitespaces - self.assertEqual(list(map(str.strip, result.splitlines())), self.OVERRIDES_JS) + self.assertCountEqual(list(map(str.strip, result.splitlines())), self.OVERRIDES_JS) @skipUnless(settings.ROOT_URLCONF == 'lms.urls', 'Test only valid in LMS')