Python 3
[redakcja.git] / src / catalogue / test_utils.py
index 2b08545..cacc9c8 100644 (file)
@@ -11,4 +11,4 @@ from os.path import abspath, dirname, join
 def get_fixture(path):
     f_path = join(dirname(abspath(__file__)), 'tests/files', path)
     with open(f_path) as f:
-        return unicode(f.read(), 'utf-8')
+        return f.read()