remove shell status update (#1758)

This commit is contained in:
C Burgos
2019-09-09 10:59:43 -04:00
committed by Alex Crichton
parent f0a55f8930
commit 7cca2751c1

View File

@ -34,7 +34,6 @@ pub fn run(server: &SocketAddr, shell: &Shell) -> Result<(), Error> {
// Spawn the driver binary, collecting its stdout/stderr in separate
// threads. We'll print this output later.
shell.status("Spawning Geckodriver...");
let mut cmd = Command::new(driver.path());
cmd.args(&args)
.arg(format!("--port={}", driver_addr.port().to_string()));