Skip to content

Commit 8b8f6c6

Browse files
committed
Remove unnecessary quote from exception message
1 parent 7bd3740 commit 8b8f6c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Codeception/Module/WebDriver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1684,7 +1684,7 @@ public function _initializeSession(): void
16841684
} catch (WebDriverCurlException $exception) {
16851685
codecept_debug('Curl error: ' . $exception->getMessage());
16861686
throw new ConnectionException(
1687-
"Can't connect to WebDriver at {$this->wdHost}.'"
1687+
"Can't connect to WebDriver at {$this->wdHost}."
16881688
. ' Make sure that ChromeDriver, GeckoDriver or Selenium Server is running.'
16891689
);
16901690
}

0 commit comments

Comments
 (0)