Index: vm/snapshot_test.cc |
=================================================================== |
--- vm/snapshot_test.cc (revision 4598) |
+++ vm/snapshot_test.cc (working copy) |
@@ -443,9 +443,9 @@ |
SnapshotReader reader(snapshot, Isolate::Current()); |
Bigint& serialized_bigint = Bigint::Handle(); |
serialized_bigint ^= reader.ReadObject(); |
- const char *str1 = BigintOperations::ToDecCString(bigint, allocator); |
+ const char *str1 = BigintOperations::ToHexCString(bigint, allocator); |
const char *str2 = |
- BigintOperations::ToDecCString(serialized_bigint, allocator); |
+ BigintOperations::ToHexCString(serialized_bigint, allocator); |
EXPECT_STREQ(str1, str2); |
free(const_cast<char*>(str1)); |
free(const_cast<char*>(str2)); |