Skip to content

Commit

Permalink
fix issue with test
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Feb 14, 2022
1 parent 5664d9e commit cf9b409
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<freemarker.version>2.3.31</freemarker.version>
<snakeyaml.version>1.16</snakeyaml.version>
<snakeyaml.version>1.30</snakeyaml.version>
<flatten-maven-plugin.version>1.2.5</flatten-maven-plugin.version>

<javadocExecutable>${java.home}/../bin/javadoc</javadocExecutable>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ The text of each license is the standard Apache 2.0 license.
proto-google-common-protos 1.17.0: https://github.com/googleapis/common-protos-java, Apache 2.0
quartz 2.3.2: https://github.com/quartz-scheduler/quartz, Apache 2.0
sketches-core 0.9.0, Apache 2.0
snakeyaml 1.16: http://www.snakeyaml.org, Apache 2.0
snakeyaml 1.30: http://www.snakeyaml.org, Apache 2.0
uzaygezen-core 0.2: code.google.com/p/uzaygezen, Apache 2.0
vertx-mysql-client 4.2.3: https://github.com/eclipse-vertx/vertx-sql-client, Apache 2.0
vertx-sql-client 4.2.3: https://github.com/eclipse-vertx/vertx-sql-client, Apache 2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private String mockYamlExecuteProcessContext() {
YamlExecuteProcessUnit yamlExecuteProcessUnit = new YamlExecuteProcessUnit();
yamlExecuteProcessUnit.setUnitID("159917166");
yamlExecuteProcessUnit.setStatus(ExecuteProcessConstants.EXECUTE_STATUS_DONE);
Collection<YamlExecuteProcessUnit> unitStatuses = Collections.singleton(yamlExecuteProcessUnit);
Collection<YamlExecuteProcessUnit> unitStatuses = Collections.singletonList(yamlExecuteProcessUnit);
YamlExecuteProcessContext yamlExecuteProcessContext = new YamlExecuteProcessContext();
yamlExecuteProcessContext.setUnitStatuses(unitStatuses);
return YamlEngine.marshal(yamlExecuteProcessContext);
Expand Down

0 comments on commit cf9b409

Please sign in to comment.