Skip to content

Commit

Permalink
Fix test increase minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
RetGal committed Feb 26, 2024
1 parent 81ce1e5 commit 8133bff
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<property name="main.class" value="mpo.dayon.common.Runner"/>
<property name="ant.build.javac.source" value="11"/>
<property name="ant.build.javac.target" value="11"/>
<property name="version" value="13.0.2"/>
<property name="version" value="13.1.0"/>

<path id="project.classpath">
<fileset dir="${dir.lib}">
Expand Down
2 changes: 2 additions & 0 deletions docs/feedback.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<div class="ls">
<a href="de_feedback.html" title="Deutsch">DE</a>
<a href="fr_feedback.html" title="Français">FR</a>
<a href="sv_feedback.html" title="Svenska">SV</a>
<a href="zh_feedback.html" title="简体中文">汉语</a>
</div>
<a href="index.html">Home</a><br/>
Expand All @@ -39,6 +40,7 @@
<div id="top">
<a href="de_feedback.html" title="Deutsch">DE</a>
<a href="fr_feedback.html" title="Français">FR</a>
<a href="sv_feedback.html" title="Svenska">SV</a>
<a href="zh_feedback.html" title="简体中文">汉语</a>
</div>
<div id="menu">
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<url>https://github.com/retgal/dayon</url>
<groupId>mpo.dayon</groupId>
<artifactId>dayon</artifactId>
<version>13.0.2</version>
<version>13.1.0</version>
<description>cross platform remote desktop solution</description>
<developers>
<developer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ void testHelloMessage() {
}

@ParameterizedTest
@CsvSource({ "13, 2", "12, 0", "11, 3" })
@CsvSource({ "13, 0", "12, 0", "11, 0" })
void unmarshallHelloMessageFromLegacyVersion(int major, int minor) throws IOException {
// given
String fileName = "tmp";
Expand Down

0 comments on commit 8133bff

Please sign in to comment.