Add assert when updating test expectations

This commit is contained in:
Jacob Dufault 2017-05-08 18:21:21 -07:00
parent 4efb4dbf25
commit 9ffed9a253

View File

@ -244,6 +244,7 @@ void UpdateTestExpectation(const std::string& filename, const std::string& expec
// Replace expectation
auto it = str.find(expectation);
assert(it != std::string::npos);
str.replace(it, expectation.size(), actual);
// Write it back out.