Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
wxbty committed Feb 16, 2023
1 parent 7b519b1 commit 686a56e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions repeater-plugin-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>repeater-plugin-core</artifactId>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>7</source>
<target>7</target>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void serializeSpec() {
String ens = SerializerWrapper.hessianSerialize(list);
SerializerWrapper.hessianDeserialize(ens);
} catch (SerializeException e) {
Assert.assertNotNull(e.getMessage());
Assert.assertNull(e);
}
Assert.assertTrue(true);
}
Expand Down

0 comments on commit 686a56e

Please sign in to comment.