You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Qute: fix template global class generation in the dev mode
- if a non-application template global class is present we have to
reflect this fact when assigning the priority for an application
template global resolver; otherwise a conflict may occur
Copy file name to clipboardExpand all lines: extensions/qute/deployment/src/test/java/io/quarkus/qute/deployment/devmode/ExistingValueResolversDevModeTest.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ public class ExistingValueResolversDevModeTest {
20
20
.addClass(TestRoute.class)
21
21
.addAsResource(newStringAsset(
22
22
"{#let a = 3}{#let b = a.minus(2)}b={b}{/}{/}"),
23
-
"templates/let.html"));
23
+
"templates/test.html"));
24
24
25
25
@Test
26
26
publicvoidtestExistingValueResolvers() {
@@ -29,7 +29,7 @@ public void testExistingValueResolvers() {
29
29
.statusCode(200)
30
30
.body(Matchers.equalTo("b=1"));
31
31
32
-
config.modifyResourceFile("templates/let.html", t -> t.concat("::MODIFIED"));
32
+
config.modifyResourceFile("templates/test.html", t -> t.concat("::MODIFIED"));
0 commit comments