]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2094] corrected an error message.
authorJINMEI Tatuya <jinmei@isc.org>
Thu, 19 Jul 2012 00:41:02 +0000 (17:41 -0700)
committerJINMEI Tatuya <jinmei@isc.org>
Thu, 19 Jul 2012 00:41:02 +0000 (17:41 -0700)
src/lib/util/unittests/wiredata.cc

index cf6727f84cce18ada1b9816f0908f48c9f1a709f..cb9f89319777a7cb8dd59797323dc9da50ae8a42 100644 (file)
@@ -35,8 +35,8 @@ matchWireData(const void* expected_data, size_t expected_len,
         const int abyte = static_cast<const uint8_t*>(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;
         }
     }