tools: remote-test-client: fix typo

Thanks to jfrimmel for pointing this out

Co-authored-by: J. Frimmel <31166235+jfrimmel@users.noreply.github.com>
This commit is contained in:
Tom Eccles 2020-06-10 09:01:01 +01:00 committed by GitHub
parent 253112d43c
commit 086eaf8f69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -235,7 +235,7 @@ fn start_qemu_emulator(target: &str, rootfs: &Path, server: &Path, tmpdir: &Path
.arg(&format!("file={},format=raw,id=hd0", &rootfs_img.to_string_lossy()));
t!(cmd.spawn());
}
_ => panic!("cannot start emulator for: {}" < target),
_ => panic!("cannot start emulator for: {}", target),
}
}