Update integration test caller of altered write_config

This commit is contained in:
Jean-Paul Calderone 2020-11-18 18:26:52 -05:00
parent 862d32a90d
commit 88ce823618

View File

@ -6,6 +6,9 @@ from os.path import exists, join
from six.moves import StringIO
from functools import partial
from twisted.python.filepath import (
FilePath,
)
from twisted.internet.defer import Deferred, succeed
from twisted.internet.protocol import ProcessProtocol
from twisted.internet.error import ProcessExitedAlready, ProcessDone
@ -258,7 +261,7 @@ def _create_node(reactor, request, temp_dir, introducer_furl, flog_gatherer, nam
config_path = join(node_dir, 'tahoe.cfg')
config = get_config(config_path)
set_config(config, 'node', 'log_gatherer.furl', flog_gatherer)
write_config(config_path, config)
write_config(FilePath(config_path), config)
created_d.addCallback(created)
d = Deferred()