diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/check-qemu-install | 4 |
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: |
