Skip to content

Commit cf6d66b

Browse files
committed
test: use f-strings in feature_settings.py
1 parent 6651d77 commit cf6d66b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/feature_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def run_test(self):
8383
with altsettings.open("w") as fp:
8484
fp.write('{"key": "value"}')
8585
with node.assert_debug_log(expected_msgs=['Setting file arg: key = "value"']):
86-
self.start_node(0, extra_args=["-settings={}".format(altsettings)])
86+
self.start_node(0, extra_args=[f"-settings={altsettings}"])
8787
self.stop_node(0)
8888

8989

0 commit comments

Comments
 (0)