Last active
June 3, 2019 12:55
-
-
Save jimevans/ad5ab16d74ba13485ce51f3cbefc6f0d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/java/client/test/org/openqa/selenium/environment/BUILD.bazel b/java/client/test/org/openqa/selenium/environment/BUILD.bazel | |
| index 4103bab..b0f085e 100644 | |
| --- a/java/client/test/org/openqa/selenium/environment/BUILD.bazel | |
| +++ b/java/client/test/org/openqa/selenium/environment/BUILD.bazel | |
| @@ -11,7 +11,7 @@ java_library( | |
| ], | |
| ), | |
| data = [ | |
| - "webserver/keystore", | |
| + "//java/client/test/org/openqa/selenium/environment/keystore:keystore", | |
| "//common/src/web", | |
| ], | |
| visibility = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # java/client/test/org/openqa/selenium/environment/keystore/BUILD.bazel is a new file | |
| # and java/client/test/org/openqa/selenium/environment/webserver/keystore is moved to | |
| # java/client/test/org/openqa/selenium/environment/keystore/keystore | |
| exports_files(["keystore"]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/java/client/test/org/openqa/selenium/environment/webserver/JettyAppServer.java b/java/client/test/org/openqa/selenium/environment/webserver/JettyAppServer.java | |
| index 4d943e3..cc71a34 100644 | |
| --- a/java/client/test/org/openqa/selenium/environment/webserver/JettyAppServer.java | |
| +++ b/java/client/test/org/openqa/selenium/environment/webserver/JettyAppServer.java | |
| @@ -283,7 +283,7 @@ public void start() { | |
| } | |
| protected Path getKeyStore() { | |
| - return InProject.locate("java/client/test/org/openqa/selenium/environment/webserver/keystore"); | |
| + return InProject.locate("java/client/test/org/openqa/selenium/environment/keystore/keystore"); | |
| } | |
| @Override |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment