diff --git a/common/lib/xmodule/xmodule/tests/test_import.py b/common/lib/xmodule/xmodule/tests/test_import.py index a75dfc8d20..fda2b47e6a 100644 --- a/common/lib/xmodule/xmodule/tests/test_import.py +++ b/common/lib/xmodule/xmodule/tests/test_import.py @@ -66,7 +66,8 @@ class ImportTestCase(BaseCourseTestCase): def test_fallback(self): '''Check that malformed xml loads as an ErrorDescriptor.''' - bad_xml = '''''' + # Use an exotic character to also flush out Unicode issues. + bad_xml = u'''''' system = self.get_system() descriptor = system.process_xml(bad_xml)