From 7aaf90c0bfd1d87e46f6b2c0632561bd70b1fa07 Mon Sep 17 00:00:00 2001 From: Kurtis Van Gent <31518063+kurtisvg@users.noreply.github.com> Date: Thu, 28 May 2020 08:23:23 -0700 Subject: [PATCH] Update ExampleSystemTest.java --- .../hello-http/src/test/java/functions/ExampleSystemTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/helloworld/hello-http/src/test/java/functions/ExampleSystemTest.java b/functions/helloworld/hello-http/src/test/java/functions/ExampleSystemTest.java index 1fb8f4584da..e274af87d7e 100644 --- a/functions/helloworld/hello-http/src/test/java/functions/ExampleSystemTest.java +++ b/functions/helloworld/hello-http/src/test/java/functions/ExampleSystemTest.java @@ -38,7 +38,7 @@ public class ExampleSystemTest { @Test public void helloHttp_shouldRunWithFunctionsFramework() throws IOException, InterruptedException { - String functionUrl = BASE_URL + "/helloHttp"; + String functionUrl = BASE_URL + "/HelloHttp"; java.net.http.HttpRequest getRequest = java.net.http.HttpRequest.newBuilder().uri(URI.create(functionUrl)).GET().build();