| Index: test/cctest/test-api.cc
|
| diff --git a/test/cctest/test-api.cc b/test/cctest/test-api.cc
|
| index e6c83849ae4881400eddc34ec268e0e51423c773..52a0e1f91caad878936b324bee21a7b0d9390630 100644
|
| --- a/test/cctest/test-api.cc
|
| +++ b/test/cctest/test-api.cc
|
| @@ -7437,10 +7437,10 @@ THREADED_TEST(ToArrayIndex) {
|
| str = v8_str("-42");
|
| index = str->ToArrayIndex();
|
| CHECK(index.IsEmpty());
|
| - str = v8_str("4294967295");
|
| + str = v8_str("4294967294");
|
| index = str->ToArrayIndex();
|
| CHECK(!index.IsEmpty());
|
| - CHECK_EQ(4294967295.0, index->Uint32Value());
|
| + CHECK_EQ(4294967294.0, index->Uint32Value());
|
| v8::Handle<v8::Number> num = v8::Number::New(isolate, 1);
|
| index = num->ToArrayIndex();
|
| CHECK(!index.IsEmpty());
|
|
|