Skip to content
This repository has been archived by the owner on May 22, 2018. It is now read-only.

Commit

Permalink
fixing typo in test method name
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeis committed Jan 28, 2016
1 parent 526355b commit 55d1271
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions java/server/test/org/openqa/grid/internal/ProxySetTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ public void testProxySortingByIdle() throws Exception {
try {
ProxySet set = registry.getAllProxies();

set.add(buildStubbedRemotePorxy(registry, 10));
set.add(buildStubbedRemotePorxy(registry, 2));
set.add(buildStubbedRemotePorxy(registry, 0));
set.add(buildStubbedRemotePorxy(registry, 1));
set.add(buildStubbedRemoteProxy(registry, 10));
set.add(buildStubbedRemoteProxy(registry, 2));
set.add(buildStubbedRemoteProxy(registry, 0));
set.add(buildStubbedRemoteProxy(registry, 1));

List<RemoteProxy> sortedList = set.getSorted();

Expand All @@ -93,7 +93,7 @@ public void testProxySortingByIdle() throws Exception {

}

public StubbedRemoteProxy buildStubbedRemotePorxy(Registry registry, int totalUsed){
public StubbedRemoteProxy buildStubbedRemoteProxy(Registry registry, int totalUsed){
RegistrationRequest req = RegistrationRequest.build("-role", "webdriver","-host","localhost");
req.getCapabilities().clear();

Expand Down

0 comments on commit 55d1271

Please sign in to comment.