loplugin:cppunitassertequals (clang-cl)

Change-Id: Ie1dfd0791abe86ed2fd91155c129d6431392445d
This commit is contained in:
Stephan Bergmann 2017-05-09 14:06:33 +02:00
parent 12191a4f30
commit 8eefafa9ce

View file

@ -85,7 +85,7 @@ Test::Test() : documentName(), pStream(nullptr)
CloseHandle(hFile);
HRESULT hr = CreateStreamOnHGlobal(hGlobal, TRUE, &pStream);
CPPUNIT_ASSERT_MESSAGE("FileStream: CreateStreamOnHGlobal failure.", hr == S_OK);
CPPUNIT_ASSERT_EQUAL_MESSAGE("FileStream: CreateStreamOnHGlobal failure.", S_OK, hr);
}
void Test::test_file_directory()