File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/org/openqa/selenium/server
test/org/openqa/grid/e2e/utils Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -536,7 +536,7 @@ protected boolean hasAvailableSession(String sessionId) {
536
536
537
537
/**
538
538
* for testing only
539
- * @param sessionInfo browser sesssion info
539
+ * @param sessionInfo browser session info
540
540
*/
541
541
protected void addToAvailableSessions (BrowserSessionInfo sessionInfo ) {
542
542
availableSessions .add (sessionInfo );
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ public static File createCustomProfileDir(String sessionId) {
64
64
/**
65
65
* Return the name of the custom profile directory for a specific seleniumm session
66
66
*
67
- * @param sessionId Current selenium sesssion id. Cannot be null.
67
+ * @param sessionId Current selenium session id. Cannot be null.
68
68
* @return file path of the custom profile directory for this session.
69
69
*/
70
70
public static File customProfileDir (String sessionId ) {
Original file line number Diff line number Diff line change @@ -49,12 +49,12 @@ public Integer apply(Object input) {
49
49
}
50
50
51
51
52
- public static void waitForActiveTestSessionCount (final Registry r , final int activeTestSesssions ) {
52
+ public static void waitForActiveTestSessionCount (final Registry r , final int activeTestSessions ) {
53
53
newWait ().until (new Function <Object , Integer >() {
54
54
@ Override
55
55
public Integer apply (Object input ) {
56
56
Integer i = r .getActiveSessions ().size ();
57
- if (i != activeTestSesssions ) {
57
+ if (i != activeTestSessions ) {
58
58
return null ;
59
59
} else {
60
60
return i ;
You can’t perform that action at this time.
0 commit comments