There was an error while loading. Please reload this page.
1 parent 9746b86 commit 5e8cb3aCopy full SHA for 5e8cb3a
1 file changed
java/server/test/org/openqa/selenium/grid/router/EndToEndTest.java
@@ -102,19 +102,21 @@ public static Collection<Supplier<TestData>> buildGrids() {
102
public Supplier<TestData> values;
103
104
private Server<?> server;
105
+ private TearDownFixture[] fixtures;
106
107
private HttpClient.Factory clientFactory;
108
109
@Before
110
public void setFields() {
111
TestData data = values.get();
112
this.server = data.server;
113
+ this.fixtures = data.fixtures;
114
this.clientFactory = HttpClient.Factory.createDefault();
115
}
116
117
@After
118
public void stopServers() {
- Safely.safelyCall(values.get().fixtures);
119
+ Safely.safelyCall(this.fixtures);
120
121
122
0 commit comments