Skip to content

Commit 5c2cd2b

Browse files
committed
[fj-doc-maven-plugin] Fix path test openrtf quarkus X
1 parent c471666 commit 5c2cd2b

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
- [fj-doc-maven-plugin] Fix path test openrtf quarkus X
13+
1014
## [8.9.4] - 2024-10-16
1115

1216
### Changed

fj-doc-maven-plugin/src/main/resources/config/template/flavour/quarkus-2/DocResourceTest.ftl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class DocResourceTest {
5959
<#if context.modules?seq_contains("fj-doc-mod-openrtf-ext")>
6060
@Test
6161
void testOpenRTF() {
62-
given().when().get("/doc/openrtf/example.rtf").then().statusCode(200);
62+
given().when().get("/doc/example.rtf").then().statusCode(200);
6363
}
6464
</#if>
6565

fj-doc-maven-plugin/src/main/resources/config/template/flavour/quarkus-3/DocResourceTest.ftl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class DocResourceTest {
5757
<#if context.modules?seq_contains("fj-doc-mod-openrtf-ext")>
5858
@Test
5959
void testOpenRTF() {
60-
given().when().get("/doc/openrtf/example.rtf").then().statusCode(200);
60+
given().when().get("/doc/example.rtf").then().statusCode(200);
6161
}
6262
</#if>
6363

0 commit comments

Comments
 (0)