File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
impl/test/src/test/java/io/serverlessworkflow/impl/test Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -482,8 +482,7 @@ public void testOpenIDCJSONWithArgsNoEndPointWorkflowExecution() throws Exceptio
482
482
483
483
RecordedRequest tokenRequest = authServer .takeRequest ();
484
484
assertEquals ("POST" , tokenRequest .getMethod ());
485
- assertEquals (
486
- "/realms/test-realm/protocol/openid-connect/token" , tokenRequest .getPath ());
485
+ assertEquals ("/realms/test-realm/protocol/openid-connect/token" , tokenRequest .getPath ());
487
486
assertEquals ("application/json" , tokenRequest .getHeader ("Content-Type" ));
488
487
489
488
String tokenRequestBody = tokenRequest .getBody ().readUtf8 ();
Original file line number Diff line number Diff line change 52
52
<properties >
53
53
<java .version>17</java .version>
54
54
<maven .compiler.source>${java.version} </maven .compiler.source>
55
+ <maven .compiler.release>${java.version} </maven .compiler.release>
55
56
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
56
57
<version .maven>3.9.11</version .maven>
57
58
308
309
<configuration >
309
310
<showDeprecation >true</showDeprecation >
310
311
<showWarnings >true</showWarnings >
311
- <source >${maven.compiler.source} </source >
312
- <target >${maven.compiler.target} </target >
313
- <testSource >${maven.compiler.source} </testSource >
314
- <testTarget >${maven.compiler.target} </testTarget >
315
312
<parameters >true</parameters >
316
313
<compilerArgs >
317
314
<arg >-Xlint:unchecked</arg >
You can’t perform that action at this time.
0 commit comments