Merge "init: fix typo"

This commit is contained in:
Treehugger Robot 2017-09-20 00:35:30 +00:00 committed by Gerrit Code Review
commit 15a14d1ad9

View file

@ -52,7 +52,7 @@ void CheckPropertiesEqual(std::vector<std::pair<std::string, std::string>> expec
entry.second == persistent_property_record.value(); entry.second == persistent_property_record.value();
}); });
ASSERT_TRUE(it != expected.end()) ASSERT_TRUE(it != expected.end())
<< "Found unexpected proprety (" << persistent_property_record.name() << ", " << "Found unexpected property (" << persistent_property_record.name() << ", "
<< persistent_property_record.value() << ")"; << persistent_property_record.value() << ")";
expected.erase(it); expected.erase(it);
} }