mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
tests: remove more f-strings
This commit is contained in:
parent
960f76e333
commit
ddfc569ba3
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue