diff options
author | René Korthaus <[email protected]> | 2016-09-04 18:27:40 +0200 |
---|---|---|
committer | René Korthaus <[email protected]> | 2016-09-04 18:27:40 +0200 |
commit | 2a6645370d45f850351e6003bd5adc06924520c4 (patch) | |
tree | 40f2667f1a1f8839cf1256d93da95a180bd46e8f /src/tests/unit_x509.cpp | |
parent | 2985b74307d7a8533700be7b0bc354fb4968b7d6 (diff) |
Call base class assignment operator in X509_Certificate
Diffstat (limited to 'src/tests/unit_x509.cpp')
-rw-r--r-- | src/tests/unit_x509.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/unit_x509.cpp b/src/tests/unit_x509.cpp index 4d3c63a1b..8449beba4 100644 --- a/src/tests/unit_x509.cpp +++ b/src/tests/unit_x509.cpp @@ -308,8 +308,8 @@ Test::Result test_x509_cert(const std::string& sig_algo, const std::string& hash Botan::X509_Certificate user1_cert_copy(user1_cert); result.test_eq("certificate copy", user1_cert == user1_cert_copy, true); - user1_cert_copy = user1_cert; - result.test_eq("certificate assignment", user1_cert == user1_cert_copy, true); + user1_cert_copy = user2_cert; + result.test_eq("certificate assignment", user2_cert == user1_cert_copy, true); Botan::X509_Certificate user1_cert_differ = ca.sign_request(user1_req, Test::rng(), |