mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 01:53:29 +02:00
selftests: fix nested double quotes in f-string
Replace nested double quotes in f-string with outer single quotes.
Fixes: 6116075e18 ("selftests: nic_link_layer: Add link layer selftest for NIC driver")
Signed-off-by: David Wei <dw@davidwei.uk>
Link: https://patch.msgid.link/20241122064821.2821199-1-dw@davidwei.uk
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
ae7370e61c
commit
078f644cb8
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user