Skip to content

Commit da30e0c

Browse files
committed
s/sss/ss
1 parent f4c1082 commit da30e0c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

java/server/src/org/openqa/selenium/server/BrowserSessionFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ protected boolean hasAvailableSession(String sessionId) {
536536

537537
/**
538538
* for testing only
539-
* @param sessionInfo browser sesssion info
539+
* @param sessionInfo browser session info
540540
*/
541541
protected void addToAvailableSessions(BrowserSessionInfo sessionInfo) {
542542
availableSessions.add(sessionInfo);

java/server/src/org/openqa/selenium/server/browserlaunchers/LauncherUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public static File createCustomProfileDir(String sessionId) {
6464
/**
6565
* Return the name of the custom profile directory for a specific seleniumm session
6666
*
67-
* @param sessionId Current selenium sesssion id. Cannot be null.
67+
* @param sessionId Current selenium session id. Cannot be null.
6868
* @return file path of the custom profile directory for this session.
6969
*/
7070
public static File customProfileDir(String sessionId) {

java/server/test/org/openqa/grid/e2e/utils/RegistryTestHelper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ public Integer apply(Object input) {
4949
}
5050

5151

52-
public static void waitForActiveTestSessionCount(final Registry r, final int activeTestSesssions) {
52+
public static void waitForActiveTestSessionCount(final Registry r, final int activeTestSessions) {
5353
newWait().until(new Function<Object, Integer>() {
5454
@Override
5555
public Integer apply(Object input) {
5656
Integer i = r.getActiveSessions().size();
57-
if (i != activeTestSesssions) {
57+
if (i != activeTestSessions) {
5858
return null;
5959
} else {
6060
return i;

0 commit comments

Comments
 (0)