Skip to content

Commit c6f7d14

Browse files
committed
Fix a unit test failure
1 parent bb3c28a commit c6f7d14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

csv/src/test/java/com/fasterxml/jackson/dataformat/csv/NullReader122Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public void testEmptyStream() throws Exception {
1717
/*Object ob =*/ r.readValue((Reader) null);
1818
fail("Should not pass");
1919
} catch (IllegalArgumentException e) {
20-
verifyException(e, "Can not pass `null`");
20+
verifyException(e, "Argument \"src\" is null");
2121
}
2222
}
2323
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.fasterxml.jackson</groupId>
55
<artifactId>jackson-base</artifactId>
6-
<version>2.10.0.pr1</version>
6+
<version>2.10.0.pr2-SNAPSHOT</version>
77
</parent>
88
<groupId>com.fasterxml.jackson.dataformat</groupId>
99
<artifactId>jackson-dataformats-text</artifactId>

0 commit comments

Comments
 (0)