Reviewers: Rico,

Description:
Fix error in sin-cos.js test introduced in r7129.

Please review this at http://codereview.chromium.org/6659034/

SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/

Affected files:
  M     test/mjsunit/sin-cos.js


Index: test/mjsunit/sin-cos.js
===================================================================
--- test/mjsunit/sin-cos.js     (revision 7131)
+++ test/mjsunit/sin-cos.js     (working copy)
@@ -33,7 +33,7 @@
 }

 function cosTest() {
-  assertEquals(0, Math.cos(1));
+  assertEquals(1, Math.cos(0));
   assertEquals(-1, Math.cos(Math.PI));
 }



--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to