From: JINMEI Tatuya Date: Thu, 19 Jul 2012 00:41:02 +0000 (-0700) Subject: [2094] corrected an error message. X-Git-Tag: trac2351_base~158^2~16^2~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eec907bdcb0e3d1ca8164edfbd78019c76f7e226;p=thirdparty%2Fkea.git [2094] corrected an error message. --- diff --git a/src/lib/util/unittests/wiredata.cc b/src/lib/util/unittests/wiredata.cc index cf6727f84c..cb9f893197 100644 --- a/src/lib/util/unittests/wiredata.cc +++ b/src/lib/util/unittests/wiredata.cc @@ -35,8 +35,8 @@ matchWireData(const void* expected_data, size_t expected_len, const int abyte = static_cast(actual_data)[i]; if (ebyte != abyte) { FAIL() << "Wire data mismatch at " << i << "th byte\n" - << " Actual: " << ebyte << "\n" - << "Expected: " << abyte << "\n"; + << " Actual: " << abyte << "\n" + << "Expected: " << ebyte << "\n"; return; } }