Revision: 774
http://mathlib.svn.sourceforge.net/mathlib/?rev=774&view=rev
Author: st_mueller
Date: 2009-01-25 19:29:11 +0000 (Sun, 25 Jan 2009)
Log Message:
-----------
Modified Paths:
--------------
JMathLib/trunk/src/jmathlibtests/core/interpreter/testInterpreter.java
Modified: JMathLib/trunk/src/jmathlibtests/core/interpreter/testInterpreter.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/core/interpreter/testInterpreter.java 2009-01-25 19:28:55 UTC (rev 773)
+++ JMathLib/trunk/src/jmathlibtests/core/interpreter/testInterpreter.java 2009-01-25 19:29:11 UTC (rev 774)
@@ -85,7 +85,8 @@
}
public void testAccessMethods11() {
double[][] dr = {{1.0, 2.0, 1.0},{3.0, 4.0, 5.0}};
- ml.executeExpression("d=[1,2,1\n3,4,5]");
+ ml.executeExpression("setdebug(1)");
+ ml.executeExpression("d=[1,2,1\n3,4,5]");
assertTrue(Compare.ArrayEquals(dr, ml.getArrayValueRe("d")));
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|