Skip to content

Commit 088918c

Browse files
committed
Fix typo in error message
1 parent 42abd3f commit 088918c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/server/src/com/thoughtworks/selenium/webdriven/WebDriverBackedSeleniumServlet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ private void startNewSession(
227227

228228
Session session = sessionsSupplier.get().get(sessionId);
229229
if (session == null) {
230-
getServletContext().log("Attempt to use non-existant session: " + sessionId);
231-
sendError(resp, "Attempt to use non-existant session: " + sessionId);
230+
getServletContext().log("Attempt to use non-existent session: " + sessionId);
231+
sendError(resp, "Attempt to use non-existent session: " + sessionId);
232232
return;
233233
}
234234
WebDriver driver = session.getDriver();

0 commit comments

Comments
 (0)