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

Unified Diff: gin/converter_unittest.cc

Issue 1469783002: Cleanup: Correctly spell success(ful). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format media Created 5 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
« no previous file with comments | « crypto/symmetric_key_win.cc ('k') | ios/chrome/browser/find_in_page/find_in_page_controller.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/converter_unittest.cc
diff --git a/gin/converter_unittest.cc b/gin/converter_unittest.cc
index a7c35470320160fcc2a3798e21b66a6464931eb2..099895aef266c2590f7a587ddd884c95009fef53 100644
--- a/gin/converter_unittest.cc
+++ b/gin/converter_unittest.cc
@@ -80,7 +80,7 @@ TEST_F(ConverterTest, Int32) {
struct {
v8::Local<v8::Value> input;
- bool expect_sucess;
+ bool expect_success;
int expected_result;
} test_data_from[] = {
{ Boolean::New(instance_->isolate(), false).As<Value>(), false, 0 },
@@ -102,7 +102,7 @@ TEST_F(ConverterTest, Int32) {
int32_t result = std::numeric_limits<int32_t>::min();
bool success = Converter<int32_t>::FromV8(instance_->isolate(),
test_data_from[i].input, &result);
- EXPECT_EQ(test_data_from[i].expect_sucess, success) << i;
+ EXPECT_EQ(test_data_from[i].expect_success, success) << i;
if (success)
EXPECT_EQ(test_data_from[i].expected_result, result) << i;
}
« no previous file with comments | « crypto/symmetric_key_win.cc ('k') | ios/chrome/browser/find_in_page/find_in_page_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698