Issue #5264 - Fixing test-integration references to demos

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Joakim Erdfelt 2020-09-23 16:44:17 -05:00
parent 09d159d038
commit c9be742d70
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
3 changed files with 32 additions and 2 deletions

View File

@ -102,6 +102,36 @@
<artifactId>jetty-home</artifactId>
<version>${project.version}</version>
<type>pom</type>
<exclusions>
<exclusion>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jaspi</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty.demos</groupId>
<artifactId>demo-jetty-webapp</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty.demos</groupId>
<artifactId>demo-jndi-webapp</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty.demos</groupId>
<artifactId>demo-jaas-webapp</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty.demos</groupId>
<artifactId>demo-spec-webapp</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty.demos</groupId>
<artifactId>demo-proxy-webapp</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.jetty.demos</groupId>
<artifactId>demo-async-rest-webapp</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.tests</groupId>

View File

@ -63,7 +63,7 @@ public class JavaxWebSocketTest
@Test
public void testChatEndpoint() throws Exception
{
URI uri = WSURI.toWebsocket(server.getServerURI().resolve("/test-jetty-webapp/javax.websocket"));
URI uri = WSURI.toWebsocket(server.getServerURI().resolve("/demo-jetty-webapp/javax.websocket"));
WebSocketContainer container = ContainerProvider.getWebSocketContainer();

View File

@ -60,7 +60,7 @@ public class JettyWebSocketTest
@Test
public void testChatEndpoint() throws Exception
{
URI uri = WSURI.toWebsocket(server.getServerURI().resolve("/test-jetty-webapp/ws/foo"));
URI uri = WSURI.toWebsocket(server.getServerURI().resolve("/demo-jetty-webapp/ws/foo"));
WebSocketClient client = new WebSocketClient();