mirror of https://github.com/apache/poi.git
Comment out writing to file in c:/temp which breaks the build now
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1686106 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
675758cc85
commit
5562f55c77
|
@ -2581,12 +2581,12 @@ public final class TestBugs extends BaseTestBugzillaIssues {
|
|||
Workbook wbBack = HSSFTestDataSamples.writeOutAndReadBack(wb);
|
||||
assertEquals(4, wbBack.getNumberOfSheets());
|
||||
|
||||
OutputStream fOut = new FileOutputStream("C:\\temp\\56325a.xls");
|
||||
try {
|
||||
wb.write(fOut);
|
||||
} finally {
|
||||
fOut.close();
|
||||
}
|
||||
// OutputStream fOut = new FileOutputStream("C:\\temp\\56325a.xls");
|
||||
// try {
|
||||
// wb.write(fOut);
|
||||
// } finally {
|
||||
// fOut.close();
|
||||
// }
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue