diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-05-09 14:06:33 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-05-09 14:06:33 +0200 |
commit | 8eefafa9ce7febe0a36e1bf5f4c77492a1b699fb (patch) | |
tree | 2a5905ee54e7dd40a9883ffcea3a05660e836cbf /shell/qa | |
parent | 12191a4f30078bb81c39a74a994ba7b2b410adaf (diff) |
loplugin:cppunitassertequals (clang-cl)
Change-Id: Ie1dfd0791abe86ed2fd91155c129d6431392445d
Diffstat (limited to 'shell/qa')
-rw-r--r-- | shell/qa/zip/ziptest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/qa/zip/ziptest.cxx b/shell/qa/zip/ziptest.cxx index a09e85b878cc..a6bb57ccb30b 100644 --- a/shell/qa/zip/ziptest.cxx +++ b/shell/qa/zip/ziptest.cxx @@ -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() |