Commit 83fcc318 by Will Daly

Fixed test that was failing in Vagrant due to filesystem encoding

mismatch
parent 80c83f0b
...@@ -385,7 +385,7 @@ class ImportTestCase(BaseCourseTestCase): ...@@ -385,7 +385,7 @@ class ImportTestCase(BaseCourseTestCase):
print("course errors:") print("course errors:")
# Expect to find an error/exception about characters in "®esources" # 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")) errors = [(msg.encode("utf-8"), err.encode("utf-8"))
for msg, err in for msg, err in
modulestore.get_item_errors(course.location)] modulestore.get_item_errors(course.location)]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment