summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2025-12-12 13:30:05 +0100
committerChristian Breunig <christian@breunig.cc>2025-12-12 13:30:05 +0100
commit71b6e5262073c0b3c9701e5de5b88e343f29b008 (patch)
treeabe96e4b381a551c27eb9cd525a54f80cee7e5bc /scripts
parentfe158b284613a918637e08f3ecb27c15f5236b66 (diff)
downloadvyos-build-71b6e5262073c0b3c9701e5de5b88e343f29b008.tar.gz
vyos-build-71b6e5262073c0b3c9701e5de5b88e343f29b008.zip
smoketest: T8087: bugfix missing f-ormat string indicator
Commit fe158b284 ("smoketest: T8087: reorganize folderstructure for embedded configttests") missed out defining the string to use with an 'f' prefix.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check-qemu-install4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install
index 027deb16..fadd0a9e 100755
--- a/scripts/check-qemu-install
+++ b/scripts/check-qemu-install
@@ -921,11 +921,11 @@ try:
c.expect(op_mode_prompt)
if args.no_interfaces:
# remove interface tests as they consume a lot of time
- c.sendline('sudo rm -f {smoketests_path}/cli/test_interfaces_*')
+ c.sendline(f'sudo rm -f {smoketests_path}/cli/test_interfaces_*')
c.expect(op_mode_prompt)
if args.no_vpp:
# remove VPP tests
- c.sendline('sudo rm -f {smoketests_path}/cli/test_vpp*')
+ c.sendline(f'sudo rm -f {smoketests_path}/cli/test_vpp*')
c.expect(op_mode_prompt)
if args.vyconf: