Fix unnecessary mut warning in chromedriver service
This commit is contained in:
parent
3476080ac6
commit
9b2c9dba5b
1 changed files with 1 additions and 1 deletions
|
|
@ -24,7 +24,7 @@ impl ChromeDriverService {
|
||||||
.spawn()
|
.spawn()
|
||||||
.context("Failed to start chromedriver")?;
|
.context("Failed to start chromedriver")?;
|
||||||
|
|
||||||
let mut service = Self {
|
let service = Self {
|
||||||
port,
|
port,
|
||||||
process: Some(process),
|
process: Some(process),
|
||||||
binary_path,
|
binary_path,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue