Some housekeeping
[redakcja.git] / src / catalogue / test_utils.py
index 2b08545..7343d5c 100644 (file)
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-#
 # This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
 #
@@ -11,4 +9,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()