test/initrd: remove unneeded f-string

No interpolation was done via this f-string, remove it.
This commit is contained in:
Christian Kellner 2021-02-16 22:15:37 +01:00 committed by Tom Gundersen
parent d4ebbb821a
commit 8ad2eef13f

View file

@ -71,7 +71,7 @@ class Initrd:
with self.open() as image:
hdr = read_header(image)
if hdr.startswith(b'\x71\xc7') or hdr == b'070701':
cmd = f"cpio --extract --quiet --to-stdout -- 'early_cpio'"
cmd = "cpio --extract --quiet --to-stdout -- 'early_cpio'"
data = self.run(cmd, image)
self.early_cpio = data == '1'