Title: [119075] trunk/Source/WebKit/chromium
Revision
119075
Author
yo...@chromium.org
Date
2012-05-31 01:55:10 -0700 (Thu, 31 May 2012)

Log Message

Build fix for Chromium Linux (Tests) after r119073.

* tests/DecimalTest.cpp:
(TEST_F):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (119074 => 119075)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-05-31 08:42:35 UTC (rev 119074)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-05-31 08:55:10 UTC (rev 119075)
@@ -1,5 +1,12 @@
 2012-05-31  Yoshifumi Inoue  <yo...@chromium.org>
 
+        Build fix for Chromium Linux (Tests) after r119073.
+
+        * tests/DecimalTest.cpp:
+        (TEST_F):
+
+2012-05-31  Yoshifumi Inoue  <yo...@chromium.org>
+
         [Platform] Introduce Decimal class for Number/Range input type.
         https://bugs.webkit.org/show_bug.cgi?id=87360
 

Modified: trunk/Source/WebKit/chromium/tests/DecimalTest.cpp (119074 => 119075)


--- trunk/Source/WebKit/chromium/tests/DecimalTest.cpp	2012-05-31 08:42:35 UTC (rev 119074)
+++ trunk/Source/WebKit/chromium/tests/DecimalTest.cpp	2012-05-31 08:55:10 UTC (rev 119075)
@@ -451,7 +451,7 @@
     EXPECT_EQ(encode(99, 0, Positive), Decimal(99) / Decimal(1));
     EXPECT_EQ(Decimal(1), Decimal(-50) / Decimal(-50));
     EXPECT_EQ(encode(UINT64_C(3333333333333333), -16, Positive), Decimal(1) / Decimal(3));
-    EXPECT_EQ(encode(UINT64_C(12345678901234), -1, Positive), encode(12345678901234, 0, Positive) / Decimal(10));
+    EXPECT_EQ(encode(UINT64_C(12345678901234), -1, Positive), encode(UINT64_C(12345678901234), 0, Positive) / Decimal(10));
 }
 
 TEST_F(DecimalTest, DivisionBigExponent)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to