From 799425b80267fe215f9b9191348c8032deec013c Mon Sep 17 00:00:00 2001 From: Arif Ali Date: Thu, 18 Apr 2024 12:54:50 +0100 Subject: [pylint] Convert all tests to f-strings Signed-off-by: Arif Ali --- tests/report_tests/plugin_tests/networking/networking.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/report_tests/plugin_tests') diff --git a/tests/report_tests/plugin_tests/networking/networking.py b/tests/report_tests/plugin_tests/networking/networking.py index 77afe6d5..3b15bc88 100644 --- a/tests/report_tests/plugin_tests/networking/networking.py +++ b/tests/report_tests/plugin_tests/networking/networking.py @@ -37,7 +37,7 @@ class NetworkingPluginTest(StageOneReportTest): # https://lwn.net/Articles/142330/ if not dev.startswith('bonding_'): self.assertFileGlobInArchive( - "sos_commands/networking/ethtool_*_%s" % dev + f"sos_commands/networking/ethtool_*_{dev}" ) -- cgit