From 83fcc318c60f1a91090876b0409cbf7a4de9681c Mon Sep 17 00:00:00 2001 From: Will Daly Date: Wed, 30 Oct 2013 09:23:48 -0400 Subject: [PATCH] Fixed test that was failing in Vagrant due to filesystem encoding mismatch --- common/lib/xmodule/xmodule/tests/test_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lib/xmodule/xmodule/tests/test_import.py b/common/lib/xmodule/xmodule/tests/test_import.py index 16c82753a5..04a4e84f73 100644 --- a/common/lib/xmodule/xmodule/tests/test_import.py +++ b/common/lib/xmodule/xmodule/tests/test_import.py @@ -385,7 +385,7 @@ class ImportTestCase(BaseCourseTestCase): print("course errors:") # Expect to find an error/exception about characters in "®esources" - expect = "Invalid characters in '®esources'" + expect = "Invalid characters" errors = [(msg.encode("utf-8"), err.encode("utf-8")) for msg, err in modulestore.get_item_errors(course.location)]