Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
peacewong committed Sep 10, 2024
1 parent ba5c070 commit 317ae5b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,10 @@ public class VariableOperationTest {

@Test
public void testSqlFormat() throws VariableOperationFailedException {
String jsonOld =
"select \n"
+ "\"&{yyyy-MM}\"";
String jsonOld = "select \n" + "\"&{yyyy-MM}\"";
String jsonNew = VariableOperationUtils.replaces(zonedDateTime, jsonOld);
System.out.println(jsonNew);
assertEquals(
jsonNew,
"select \n"
+ "\"2022-04\"");
assertEquals(jsonNew, "select \n" + "\"2022-04\"");
}

@Test
Expand Down
1 change: 1 addition & 0 deletions tool/dependencies/known-dependencies.txt
Original file line number Diff line number Diff line change
Expand Up @@ -739,6 +739,7 @@ spring-tx-5.3.27.jar
spring-web-5.3.27.jar
spring-webflux-5.3.27.jar
spring-webmvc-5.3.27.jar
spring-retry-1.3.4.jar
springfox-bean-validators-3.0.0.jar
springfox-boot-starter-3.0.0.jar
springfox-core-3.0.0.jar
Expand Down

0 comments on commit 317ae5b

Please sign in to comment.