summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2018-07-23 19:50:30 +0200
committermathieui <mathieui@mathieui.net>2018-07-23 19:50:30 +0200
commit37b4eab2c850116d66e6700d2a25057916c531e5 (patch)
tree28f8c1fa8204386afa70afa482968a6d0e7a74a0
parentcd6dba62726f9fee9e1829a13a3fd9b34f734650 (diff)
downloadpoezio-37b4eab2c850116d66e6700d2a25057916c531e5.tar.gz
poezio-37b4eab2c850116d66e6700d2a25057916c531e5.tar.bz2
poezio-37b4eab2c850116d66e6700d2a25057916c531e5.tar.xz
poezio-37b4eab2c850116d66e6700d2a25057916c531e5.zip
Fix unittests for python 3.5ci-test
-rw-r--r--test/test_config.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_config.py b/test/test_config.py
index 9b93096e..4632410b 100644
--- a/test/test_config.py
+++ b/test/test_config.py
@@ -27,7 +27,7 @@ class TestConfigSimple(object):
assert config_obj.get('toto') == ''
def test_file_content(self, config_obj):
- with open(config_obj.file_name, 'r') as fd:
+ with open(str(config_obj.file_name), 'r') as fd:
data = fd.read()
supposed_content = '[Poezio]\ntest = coucou\ntest2 = true\n'
assert data == supposed_content
@@ -47,7 +47,7 @@ class TestConfigSimple(object):
assert config_obj.get('test_float', default=1.0) == 1.5
def test_remove(self, config_obj):
- with open(config_obj.file_name, 'r') as fd:
+ with open(str(config_obj.file_name), 'r') as fd:
data = fd.read()
supposed_content = ('[Poezio]\ntest = coucou\ntest2 = true\n'
@@ -62,7 +62,7 @@ class TestConfigSimple(object):
config_obj.remove_and_save('test_bool_f')
config_obj.remove_and_save('test_float')
- with open(config_obj.file_name, 'r') as fd:
+ with open(str(config_obj.file_name), 'r') as fd:
data = fd.read()
supposed_content = '[Poezio]\ntest = coucou\ntest2 = true\n'
@@ -89,7 +89,7 @@ class TestConfigSections(object):
assert config_obj.get('option2', section='NotPoezio') == 'test2'
def test_file_content(self, config_obj):
- with open(config_obj.file_name, 'r') as fd:
+ with open(str(config_obj.file_name), 'r') as fd:
data = fd.read()
supposed_content = ('[Poezio]\ntest = coucou\ntest2 = true\n'
'[NotPoezio]\noption1 = test\noption2 = test2\n')