Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jimevans/ad5ab16d74ba13485ce51f3cbefc6f0d to your computer and use it in GitHub Desktop.

Select an option

Save jimevans/ad5ab16d74ba13485ce51f3cbefc6f0d to your computer and use it in GitHub Desktop.
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 = [
# 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"])
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