Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1281)

Unified Diff: webkit/glue/cpp_bound_class_unittest.cc

Issue 5482002: Fix a ui test result since numbers are now doubles (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/webkit/glue/plugins/test
Patch Set: test_shell_tests Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/glue/cpp_bound_class_unittest.cc
diff --git a/webkit/glue/cpp_bound_class_unittest.cc b/webkit/glue/cpp_bound_class_unittest.cc
index f40b66b79f0a7ae9c71fcbe9f050c82d002e497d..283b807d3748cd00512a114b0dbd2ece9182337e 100644
--- a/webkit/glue/cpp_bound_class_unittest.cc
+++ b/webkit/glue/cpp_bound_class_unittest.cc
@@ -238,8 +238,7 @@ TEST_F(CppBoundClassTest, InvokeMethods) {
"example.echoValue()", "null", // Too few arguments
"example.echoType(false)", "true",
- // Re-enable after merging r72243.
- //"example.echoType(19)", "3.14159",
+ "example.echoType(19)", "3.14159",
"example.echoType(9.876)", "3.14159",
"example.echoType('test string')", "'Success!'",
"example.echoType()", "null", // Too few arguments

Powered by Google App Engine
This is Rietveld 408576698