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 github = xxx
''') ''')
f.flush() f.flush()
test_conf = f'''\ test_conf = '''\
[example] [example]
github = harry-sanabria/ReleaseTestRepo github = harry-sanabria/ReleaseTestRepo
[__config__] [__config__]
keyfile = {f.name} keyfile = {name}
''' '''.format(name=f.name)
try: try:
version = await run_source(test_conf) version = await run_source(test_conf)