Skip to content

Commit 5f3e1ce

Browse files
committed
Document another broken test method
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1470356 13f79535-47bb-0310-9956-ffa450edef68
1 parent 9f0c540 commit 5f3e1ce

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/test/java/org/apache/commons/io/input/CharSequenceInputStreamTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ public void testLargeSingleByteRead_UTF8() throws IOException {
239239
testSingleByteRead(LARGE_TEST_STRING, "UTF-8");
240240
}
241241

242+
// This test is broken for charsets that don't create a single byte for each char
242243
private void testMarkReset(final String csName) throws Exception {
243244
final InputStream r = new CharSequenceInputStream("test", csName);
244245
try {
@@ -259,7 +260,7 @@ private void testMarkReset(final String csName) throws Exception {
259260
}
260261

261262
@Test
262-
@Ignore
263+
@Ignore // Test broken for charsets that create multiple bytes for a single char
263264
public void testMarkReset_RequiredCharsets() throws Exception {
264265
for (final String csName : getRequiredCharsetNames()) {
265266
testMarkReset(csName);

0 commit comments

Comments
 (0)