From 0a66fe284bcd805182c4eee03fdd5e3a32aed192 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sun, 5 Dec 2021 23:25:31 +0000 Subject: [PATCH] initial work on example 5 git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1895606 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/test/java/org/apache/poi/xssf/TestXLookupFunction.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/poi-ooxml/src/test/java/org/apache/poi/xssf/TestXLookupFunction.java b/poi-ooxml/src/test/java/org/apache/poi/xssf/TestXLookupFunction.java index 932629255c..16122cfffc 100644 --- a/poi-ooxml/src/test/java/org/apache/poi/xssf/TestXLookupFunction.java +++ b/poi-ooxml/src/test/java/org/apache/poi/xssf/TestXLookupFunction.java @@ -47,9 +47,6 @@ public class TestXLookupFunction { String cellRef = String.format(Locale.ENGLISH, "%s2:%s2", col1, col2); sheet.setArrayFormula(formulaText, CellRangeAddress.valueOf(cellRef)); fe.evaluateAll(); - try (java.io.FileOutputStream fos = new java.io.FileOutputStream("/tmp/xlook.xlsx")) { - wb.write(fos); - } assertEquals("Dianne Pugh", row1.getCell(2).getStringCellValue()); assertEquals("Finance", row1.getCell(3).getStringCellValue()); }