Skip to content

Commit 4942a70

Browse files
committed
The PEX used in the interactive tests should be crazy-fun's
Rather than one located in the user's home directory. /facepalm
1 parent 7759ff4 commit 4942a70

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

java/client/test/org/openqa/selenium/BuckBuild.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,7 @@ private void downloadBuckPexIfNecessary(ImmutableList.Builder<String> builder)
138138
Path projectRoot = InProject.locate("Rakefile").getParentFile().toPath();
139139
String buckVersion = new String(Files.readAllBytes(projectRoot.resolve(".buckversion"))).trim();
140140

141-
Path pex = Paths.get(
142-
StandardSystemProperty.USER_HOME.value(), ".crazyfun", "buck", buckVersion, "buck.pex");
141+
Path pex = Paths.get("buck-out", "crazy-fun", buckVersion, "buck.pex");
143142

144143
String expectedHash = new String(Files.readAllBytes(projectRoot.resolve(".buckhash"))).trim();
145144
HashCode md5 = Files.exists(pex) ?

0 commit comments

Comments
 (0)