[Mathlib-commitlog] SF.net SVN: mathlib:[773] JMathLib/trunk/src/jmathlibtests/core/tokens/ testCha
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2009-01-25 19:29:04
|
Revision: 773
http://mathlib.svn.sourceforge.net/mathlib/?rev=773&view=rev
Author: st_mueller
Date: 2009-01-25 19:28:55 +0000 (Sun, 25 Jan 2009)
Log Message:
-----------
bugfix: correction of 'adf'+888 let to some error with disp('asdf'+5) -> disp(['asdf' num2str(5)])
Modified Paths:
--------------
JMathLib/trunk/src/jmathlibtests/core/tokens/testCharToken.java
Modified: JMathLib/trunk/src/jmathlibtests/core/tokens/testCharToken.java
===================================================================
--- JMathLib/trunk/src/jmathlibtests/core/tokens/testCharToken.java 2009-01-25 08:01:50 UTC (rev 772)
+++ JMathLib/trunk/src/jmathlibtests/core/tokens/testCharToken.java 2009-01-25 19:28:55 UTC (rev 773)
@@ -49,7 +49,7 @@
{
CharToken expectedResult = new CharToken("A String1");
Token actualResult = string1.add(number);
- assertEquals(expectedResult.toString(), actualResult.toString());
+ assertEquals(" [66 , 33 , 84 , 117 , 115 , 106 , 111 , 104]\n", actualResult.toString());
}
public void testCharToken003() {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|