ConvertUTFTest: fix misleading empty line

llvm-svn: 225580
This commit is contained in:
Dmitri Gribenko 2015-01-10 05:03:29 +00:00
parent 24b96b3a05
commit cbc7ae25da
1 changed files with 1 additions and 1 deletions

View File

@ -141,8 +141,8 @@ CheckConvertUTF8ToUnicodeScalars(ConvertUTFResultContainer Expected,
if (!Partial) if (!Partial)
std::tie(ErrorCode, Decoded) = ConvertUTF8ToUnicodeScalarsLenient(S); std::tie(ErrorCode, Decoded) = ConvertUTF8ToUnicodeScalarsLenient(S);
else else
std::tie(ErrorCode, Decoded) = ConvertUTF8ToUnicodeScalarsPartialLenient(S); std::tie(ErrorCode, Decoded) = ConvertUTF8ToUnicodeScalarsPartialLenient(S);
if (Expected.ErrorCode != ErrorCode) if (Expected.ErrorCode != ErrorCode)
return ::testing::AssertionFailure() << "Expected error code " return ::testing::AssertionFailure() << "Expected error code "
<< Expected.ErrorCode << ", actual " << Expected.ErrorCode << ", actual "