From e791325f6c22f7a5788b14ce33ff3594ee28dc35 Mon Sep 17 00:00:00 2001 From: aarif Date: Mon, 16 Sep 2019 17:02:33 +0500 Subject: [PATCH] quality fixes --- common/djangoapps/util/tests/test_file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/djangoapps/util/tests/test_file.py b/common/djangoapps/util/tests/test_file.py index 28a042a815..bca74aacee 100644 --- a/common/djangoapps/util/tests/test_file.py +++ b/common/djangoapps/util/tests/test_file.py @@ -281,4 +281,4 @@ class TestUniversalNewlineIterator(TestCase): @ddt.data(1, 2, 999) def test_unicode_data(self, buffer_size): self.assertEqual([thing.decode('utf-8') if six.PY3 else thing for thing in - UniversalNewlineIterator(StringIO(u'héllø wo®ld'),buffer_size=buffer_size)],[u'héllø wo®ld']) + UniversalNewlineIterator(StringIO(u'héllø wo®ld'), buffer_size=buffer_size)], [u'héllø wo®ld'])