remove an unnecessary row

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749300 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-06-20 10:52:50 +00:00
parent 3bc1764c5c
commit 8cefedd80a

View File

@ -373,7 +373,7 @@ public final class TestXSSFSheetShiftRows extends BaseTestSheetShiftRows {
public void bug59733() throws IOException {
Workbook workbook = new XSSFWorkbook();
Sheet sheet = workbook.createSheet();
for (int r=0; r<=4; r++) {
for (int r=0; r<=3; r++) {
sheet.createRow(r);
}