diff options
author | Nick Burch <nick@apache.org> | 2015-05-26 17:59:13 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2015-05-26 17:59:13 +0000 |
commit | f51479df57d59e462ce324b5c0d2148450c35aa6 (patch) | |
tree | 67d1ab11903eb5b7a2fc4ec8aecd80d25a2014d5 /src | |
parent | d6173090241c6f1e9f1c605748d2e210900fc324 (diff) | |
download | poi-f51479df57d59e462ce324b5c0d2148450c35aa6.tar.gz poi-f51479df57d59e462ce324b5c0d2148450c35aa6.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/testcases/org/apache/poi/poifs/filesystem/TestFileSystemBugs.java | 4 |
1 files changed, 2 insertions, 2 deletions
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<NPOIFSFileSystem>(); 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; |