summaryrefslogtreecommitdiff
path: root/test/test_farm.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_farm.py')
-rw-r--r--test/test_farm.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_farm.py b/test/test_farm.py
index c2c78be6..8cceacce 100644
--- a/test/test_farm.py
+++ b/test/test_farm.py
@@ -221,8 +221,8 @@ class FarmTestCase(object):
# ourselves.
text_diff = []
for f in diff_files:
- left = open(os.path.join(dir1, f), "r").readlines()
- right = open(os.path.join(dir2, f), "r").readlines()
+ left = open(os.path.join(dir1, f), "rU").readlines()
+ right = open(os.path.join(dir2, f), "rU").readlines()
if scrubs:
left = self._scrub(left, scrubs)
right = self._scrub(right, scrubs)