We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b52ed2 commit 3bfd4f3Copy full SHA for 3bfd4f3
java/test/org/openqa/selenium/remote/AugmenterTest.java
@@ -378,23 +378,19 @@ public interface HasNumbers {
378
379
public static class ChildRemoteDriver extends RemoteWebDriver implements HasMagicNumbers {
380
381
- private final int magicNumber = 3;
382
-
383
@Override
384
public Capabilities getCapabilities() {
385
return new FirefoxOptions();
386
}
387
388
389
public int getMagicNumber() {
390
- return magicNumber;
+ return 3;
391
392
393
394
public static class WithFinals extends RemoteWebDriver {
395
396
- public final String finalField = "FINAL";
397
398
399
400
return new ImmutableCapabilities();
0 commit comments