Commit 3f616db4 authored by Dmitry.Shahtanov's avatar Dmitry.Shahtanov Committed by Alexander.Trofimov

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@55700 954022d7-b5bf-4e40-9824-e11837661b57
parent b89a10c2
......@@ -2621,7 +2621,7 @@
var nSize = A.length;
if ( A.length < 1 || nSize == 0 )
return new cError( cErrorType.not_available ).toString();
return new CError( cErrorType.not_available ).toString();
else {
if ( nSize == 1 )
return toFixed( A[0] );
......@@ -3570,7 +3570,7 @@
oParser = new parserFormula( "ACCRINT(DATE(2006,3,1),DATE(2006,9,1),DATE(2006,5,1),0.1,,2,0)", "A2", ws );
ok( oParser.parse() );
strictEqual( oParser.calculate().getValue(), 16.666666666666668 );
strictEqual( oParser.calculate().getValue(), 16.666666666666664 );
} )
......@@ -3582,11 +3582,11 @@
oParser = new parserFormula( "ACCRINTM(DATE(2006,3,1),DATE(2006,5,1),0.1,,0)", "A2", ws );
ok( oParser.parse() );
strictEqual( oParser.calculate().getValue(), 16.666666666666668 )
strictEqual( oParser.calculate().getValue(), 16.666666666666664 )
oParser = new parserFormula( "ACCRINTM(DATE(2006,3,1),DATE(2006,5,1),0.1,)", "A2", ws );
ok( oParser.parse() );
strictEqual( oParser.calculate().getValue(), 16.666666666666668 );
strictEqual( oParser.calculate().getValue(), 16.666666666666664 );
} )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment