Skip to content

Commit

Permalink
code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
juerg committed Oct 31, 2023
1 parent d1c70d2 commit 55ddef5
Showing 1 changed file with 6 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -346,10 +346,6 @@ public void test_7f() {
assertEquals("1", records.get(0).get(2));
}





@Test
public void test_10a() {
final List<List<String>> records = new CSVReader(',', '\'').parse("1,'''zh'");
Expand Down Expand Up @@ -400,13 +396,13 @@ public void test_10d() {

@Test
public void test_11() {
try {
new CSVReader(',', '\'').parse("1,'''zh' ");
fail("Expected RuntimeException");
}
catch (RuntimeException ex) {
try {
new CSVReader(',', '\'').parse("1,'''zh' ");
fail("Expected RuntimeException");
}
catch (RuntimeException ex) {
assertEquals("Unexpected char ' ' after quoted field at line 1, col 9.", ex.getMessage());
}
}
}

@Test
Expand Down

0 comments on commit 55ddef5

Please sign in to comment.