diff options
Diffstat (limited to 'tests/qrcode.rs')
-rw-r--r-- | tests/qrcode.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qrcode.rs b/tests/qrcode.rs index c47e634..48fa8c8 100644 --- a/tests/qrcode.rs +++ b/tests/qrcode.rs @@ -46,7 +46,7 @@ fn run_in_faketty_kill_and_get_stdout(template: &Command) -> Result<String, Erro .map(|s| s.to_str().expect("not UTF8")) .collect::<Vec<_>>() .join(" "); - format!("{} {}", bin, args) + format!("{bin} {args}") }; let mut child = bash_command(&cmd)?.stdin(Stdio::null()).spawn()?; |