better verify message

This commit is contained in:
john30
2014-11-22 09:24:03 +01:00
parent 7bbceec8ed
commit 54de8319c9
+2 -2
View File
@@ -33,9 +33,9 @@ void verify(bool expectFailMatch, std::string type, std::string input,
<< std::endl;
}
else if (match == true)
std::cout << " " << type << " >" << input << "< OK" << std::endl;
std::cout << " " << type << " match >" << input << "< OK" << std::endl;
else
std::cout << " " << type << " >" << input << "< error: got >" << gotStr
std::cout << " " << type << " match >" << input << "< error: got >" << gotStr
<< "<, expected >" << expectStr << "<" << std::endl;
}