tests: remove more f-strings

This commit is contained in:
lilydjwg 2018-05-08 19:44:48 +08:00
parent 960f76e333
commit ddfc569ba3

View File

@ -37,13 +37,13 @@ async def test_keyfile_invalid(run_source):
github = xxx
''')
f.flush()
test_conf = f'''\
test_conf = '''\
[example]
github = harry-sanabria/ReleaseTestRepo
[__config__]
keyfile = {f.name}
'''
keyfile = {name}
'''.format(name=f.name)
try:
version = await run_source(test_conf)