We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2368f7a commit 469efe8Copy full SHA for 469efe8
java/server/test/org/openqa/selenium/grid/node/config/NodeOptionsTest.java
@@ -156,7 +156,7 @@ public void canConfigureNodeWithoutDriverDetection() {
156
}
157
158
@Test
159
- public void doNotDetectDriversByDefault() {
+ public void detectDriversByDefault() {
160
Config config = new MapConfig(emptyMap());
161
162
List<WebDriverInfo> reported = new ArrayList<>();
@@ -165,7 +165,7 @@ public void doNotDetectDriversByDefault() {
165
return Collections.emptySet();
166
});
167
168
- assertThat(reported).isEmpty();
+ assertThat(reported).isNotEmpty();
169
170
171
0 commit comments