Skip to content

Commit 6f303d7

Browse files
committed
- Fix test
- Add install phase for subsequent tests to run - Enable ITs again
1 parent d68a91c commit 6f303d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
# - name: Felix SCR
3333
# run: mvn -B -V -Dstyle.color=always --file scr/pom.xml clean verify
3434
- name: Felix HTTP
35-
run: mvn -B -V -DskipITs -Dstyle.color=always --file http/pom.xml clean verify
35+
run: mvn -B -V -Dstyle.color=always --file http/pom.xml clean install verify
3636
- name: Upload Test Results
3737
if: always()
3838
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3

http/jetty12/src/test/java/org/apache/felix/http/jetty/it/MissingWebsocketDependenciesIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ public void testMissingDepencencyWarningLogs() throws Exception {
6767
.pollDelay(Duration.ofMillis(200))
6868
.until(() -> containsString(logFile, "org.apache.felix.http.jetty12[org.apache.felix.http]"));
6969

70-
assertTrue(containsString(logFile, "Failed to initialize jetty specific websocket support"));
71-
assertTrue(containsString(logFile, "Failed to initialize jakarta standard websocket support"));
70+
assertTrue(containsString(logFile, "Failed to initialize jetty EE10 specific websocket support"));
71+
assertTrue(containsString(logFile, "Failed to initialize jakarta EE10 standard websocket support"));
7272
}
7373

7474
/**

0 commit comments

Comments
 (0)