[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20241122064821.2821199-1-dw@davidwei.uk>
Date: Thu, 21 Nov 2024 22:48:21 -0800
From: David Wei <dw@...idwei.uk>
To: netdev@...r.kernel.org,
Mohan Prasad J <mohan.prasad@...rochip.com>
Cc: Jakub Kicinski <kuba@...nel.org>,
"David S. Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>,
Paolo Abeni <pabeni@...hat.com>,
David Wei <dw@...idwei.uk>
Subject: [PATCH net v1] selftests: fix nested double quotes in f-string
Replace nested double quotes in f-string with outer single quotes.
Fixes: 6116075e18f7 ("selftests: nic_link_layer: Add link layer selftest for NIC driver")
Signed-off-by: David Wei <dw@...idwei.uk>
---
tools/testing/selftests/drivers/net/hw/lib/py/linkconfig.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/testing/selftests/drivers/net/hw/lib/py/linkconfig.py b/tools/testing/selftests/drivers/net/hw/lib/py/linkconfig.py
index db84000fc75b..79fde603cbbc 100644
--- a/tools/testing/selftests/drivers/net/hw/lib/py/linkconfig.py
+++ b/tools/testing/selftests/drivers/net/hw/lib/py/linkconfig.py
@@ -218,5 +218,5 @@ class LinkConfig:
json_data = process[0]
"""Check if the field exist in the json data"""
if field not in json_data:
- raise KsftSkipEx(f"Field {field} does not exist in the output of interface {json_data["ifname"]}")
+ raise KsftSkipEx(f'Field {field} does not exist in the output of interface {json_data["ifname"]}')
return json_data[field]
--
2.43.5
Powered by blists - more mailing lists