Skip to content

Commit

Permalink
Added dropTable in finally block.
Browse files Browse the repository at this point in the history
  • Loading branch information
machavan committed Jan 23, 2025
1 parent 6adfc61 commit 59cad8f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,9 @@ public void testEscapeColumnDelimitersCSVNoNewLineAtEnd() throws Exception {
i++;
}
assertEquals(i, 12, "Expected to load 12 records, but loaded " + i + " records");
} finally {
TestUtils.dropTableIfExists(tableName, stmt);
}

TestUtils.dropTableIfExists(tableName, stmt);
}
}

Expand Down

0 comments on commit 59cad8f

Please sign in to comment.