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

Unified Diff: base/pickle_unittest.cc

Issue 290173008: Refactor PickleIterator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 7 months 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: base/pickle_unittest.cc
===================================================================
--- base/pickle_unittest.cc (revision 271871)
+++ base/pickle_unittest.cc (working copy)
@@ -262,7 +262,7 @@
// one more byte should double the capacity
pickle.WriteData(data_ptr, 1);
- cur_payload += 5;
+ cur_payload += 8;
EXPECT_EQ(unit * 4, pickle.capacity_after_header());
EXPECT_EQ(cur_payload, pickle.payload_size());
}

Powered by Google App Engine
This is Rietveld 408576698