You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by mo...@apache.org on 2009/05/29 13:27:02 UTC

svn commit: r779962 - /incubator/kato/trunk/HprofBinaryReaderPOC/testsrc/org/apache/kato/hprof/HProfViewTest.java

Author: monteith
Date: Fri May 29 13:27:02 2009
New Revision: 779962

URL: http://svn.apache.org/viewvc?rev=779962&view=rev
Log:
Fix testcase to open HProfFile

Modified:
    incubator/kato/trunk/HprofBinaryReaderPOC/testsrc/org/apache/kato/hprof/HProfViewTest.java

Modified: incubator/kato/trunk/HprofBinaryReaderPOC/testsrc/org/apache/kato/hprof/HProfViewTest.java
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/HprofBinaryReaderPOC/testsrc/org/apache/kato/hprof/HProfViewTest.java?rev=779962&r1=779961&r2=779962&view=diff
==============================================================================
--- incubator/kato/trunk/HprofBinaryReaderPOC/testsrc/org/apache/kato/hprof/HProfViewTest.java (original)
+++ incubator/kato/trunk/HprofBinaryReaderPOC/testsrc/org/apache/kato/hprof/HProfViewTest.java Fri May 29 13:27:02 2009
@@ -28,6 +28,7 @@
 	
 	public void setUp() throws Exception {
 		file = HProfFactory.createReader(new File("data/java.hprof"));
+		file.open();
 		view = new HProfView(file);
 		view.open(null);
 	}