From 88a91dc90be35617b52f4304f216762077075007 Mon Sep 17 00:00:00 2001 From: Yuri Gorshenin Date: Mon, 30 Jan 2017 14:06:09 +0300 Subject: [PATCH] Review fixes. --- coding/zlib.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/coding/zlib.cpp b/coding/zlib.cpp index 2d40bbcebe..15de3ccf13 100644 --- a/coding/zlib.cpp +++ b/coding/zlib.cpp @@ -61,9 +61,9 @@ ZLib::DeflateProcessor::~DeflateProcessor() noexcept int bits = 0; int const ret = deflatePending(&m_stream, &bytes, &bits); UNUSED_VALUE(ret); - ASSERT_EQUAL(ret, Z_OK, ("")); - ASSERT_EQUAL(bytes, 0, ("Some bytes were not flushed:", bytes)); - ASSERT_EQUAL(bits, 0, ("Some bits were not flushed:", bits)); + ASSERT_EQUAL(ret, Z_OK, ()); + ASSERT_EQUAL(bytes, 0, (bytes, "bytes were not flushed")); + ASSERT_EQUAL(bits, 0, (bits, "bits were not flushed")); if (m_init) deflateEnd(&m_stream);