From: Nick Burch Date: Tue, 26 May 2015 17:59:13 +0000 (+0000) Subject: Force OPOIFS test to explicitly create OPOIFS instance X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8878be359a3c7566614adc5b0ebc9ddfae277e4a;p=poi.git Force OPOIFS test to explicitly create OPOIFS instance git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1681802 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/testcases/org/apache/poi/poifs/filesystem/TestFileSystemBugs.java b/src/testcases/org/apache/poi/poifs/filesystem/TestFileSystemBugs.java index 3de3ccb8dc..2f7c67f379 100644 --- a/src/testcases/org/apache/poi/poifs/filesystem/TestFileSystemBugs.java +++ b/src/testcases/org/apache/poi/poifs/filesystem/TestFileSystemBugs.java @@ -67,9 +67,9 @@ public final class TestFileSystemBugs extends TestCase { if (openedFSs == null) openedFSs = new ArrayList(); openedFSs.add(nfs); - POIFSFileSystem ofs = null; + OPOIFSFileSystem ofs = null; try { - ofs = new POIFSFileSystem(inps[1]); + ofs = new OPOIFSFileSystem(inps[1]); if (oldFails) fail("POIFSFileSystem should have failed but didn't"); } catch (Exception e) { if (!oldFails) throw e;