| Index: runtime/vm/object_test.cc | 
| diff --git a/runtime/vm/object_test.cc b/runtime/vm/object_test.cc | 
| index ec55e5008db637f86c665b441501941b4f0d5f12..e71f5d34f308df4d2cd8d7046d14b75c348cf3c4 100644 | 
| --- a/runtime/vm/object_test.cc | 
| +++ b/runtime/vm/object_test.cc | 
| @@ -403,7 +403,7 @@ TEST_CASE(Bigint) { | 
| const String& test = String::Handle(String::New("1234")); | 
| b = Bigint::New(test); | 
| const char* str = b.ToCString(); | 
| -  EXPECT_STREQ("0x4D2", str); | 
| +  EXPECT_STREQ("1234", str); | 
|  | 
| int64_t t64 = DART_2PART_UINT64_C(1, 0); | 
| Bigint& big = Bigint::Handle(); | 
|  |