Change case of FAILED message in datatest.cpp
Throughout the library the message "FAILED" (not "failed") is used to signal failures. It makes it easy to grep for them. This change makes the message consistent.pull/589/head
parent
dbab746bd9
commit
f8a6a9c9e0
|
|
@ -860,7 +860,7 @@ void TestDataFile(std::string filename, const NameValuePairs &overrideParameters
|
|||
}
|
||||
catch (const TestFailure &)
|
||||
{
|
||||
std::cout << "\nTest failed.\n";
|
||||
std::cout << "\nTest FAILED.\n";
|
||||
}
|
||||
catch (const CryptoPP::Exception &e)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue