Skip to content

Commit 3fa709f

Browse files
committed
Import of Cloud Functions JVM from Git-on-Borg.
- 731320c490e47b76a75921f58e06c400434788d8 Fix function-jar location in integration test. by Éamonn McManus <[email protected]> PiperOrigin-RevId: 288568763
1 parent 5990309 commit 3fa709f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

invoker-core/core/src/test/java/com/google/cloud/functions/invoker/IntegrationTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ public void packageless() throws Exception {
175175

176176
private String functionJarString() throws IOException {
177177
Path functionJarTargetDir = Paths.get("../functionjar/target");
178-
Pattern functionJarPattern = Pattern.compile("java-function-invoker-core-functionjar-.*\\.jar");
178+
Pattern functionJarPattern =
179+
Pattern.compile("java-function-invoker-core-functionjar-.*-tests\\.jar");
179180
List<Path> functionJars = Files.list(functionJarTargetDir)
180181
.map(path -> path.getFileName().toString())
181182
.filter(s -> functionJarPattern.matcher(s).matches())

0 commit comments

Comments
 (0)