提交 9bdebe2f 编写于 作者: C Cleber Rosa

test_alternate_config_datadir: Python 3 os.write() requires bytes

Signed-off-by: NCleber Rosa <crosa@redhat.com>
上级 3e4becd3
......@@ -186,7 +186,7 @@ class RunnerOperationTest(unittest.TestCase):
os.mkdir(value)
config += "%s = %s\n" % (key, value)
fd, config_file = tempfile.mkstemp(dir=self.tmpdir)
os.write(fd, config)
os.write(fd, config.encode())
os.close(fd)
cmd = '%s --config %s config --datadir' % (AVOCADO, config_file)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册