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
Jeffrey Walton 2018-02-19 16:17:03 -05:00
parent dbab746bd9
commit f8a6a9c9e0
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{