tests: Only verify the freshly-signed data.
diff --git a/tests/test-encode-decode-data.cpp b/tests/test-encode-decode-data.cpp
index a88bde0..c75630e 100644
--- a/tests/test-encode-decode-data.cpp
+++ b/tests/test-encode-decode-data.cpp
@@ -197,10 +197,6 @@
dumpData(*freshData);
Blob freshEncoding = freshData->wireEncode();
- // Do verification at the end because it uses callbacks.
- cout << endl;
- keyChain.verifyData(data, bind(&onVerified, "Decoded Data", _1), bind(&onVerifyFailed, "Decoded Data"));
- keyChain.verifyData(reDecodedData, bind(&onVerified, "Re-decoded Data", _1), bind(&onVerifyFailed, "Re-decoded Data"));
keyChain.verifyData(freshData, bind(&onVerified, "Freshly-signed Data", _1), bind(&onVerifyFailed, "Freshly-signed Data"));
} catch (std::exception& e) {
cout << "exception: " << e.what() << endl;