fix missing bracket

This commit is contained in:
Philipp A. Hartmann 2014-07-31 13:06:28 +02:00
parent b98852e165
commit 82b32a93d2

View File

@ -847,7 +847,7 @@ TEST(Value, Object) {
EXPECT_EQ(x.MemberBegin() + first, itr); EXPECT_EQ(x.MemberBegin() + first, itr);
size_t removeCount = last - first; size_t removeCount = last - first;
EXPECT_EQ(n - removeCount, size_t(x.MemberEnd() - x.MemberBegin()); EXPECT_EQ(n - removeCount, size_t(x.MemberEnd() - x.MemberBegin()));
for (unsigned i = 0; i < first; i++) for (unsigned i = 0; i < first; i++)
EXPECT_EQ(i, x[keys[i]][0u].GetUint()); EXPECT_EQ(i, x[keys[i]][0u].GetUint());
for (unsigned i = first; i < n - removeCount; i++) for (unsigned i = first; i < n - removeCount; i++)