Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(577)

Unified Diff: net/data/verify_certificate_chain_unittest/generate-expired-unconstrained-root.py

Issue 2282183004: Add error information to VerifyCertificateChain(). (Closed)
Patch Set: fix typo in README Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/data/verify_certificate_chain_unittest/generate-expired-unconstrained-root.py
diff --git a/net/data/verify_certificate_chain_unittest/generate-expired-unconstrained-root.py b/net/data/verify_certificate_chain_unittest/generate-expired-unconstrained-root.py
index e0e6db10ded3d81afdc08a386c139e12c97d4d4f..7585cb2c42d545ca3e4311a3c012b52e2775ebcd 100755
--- a/net/data/verify_certificate_chain_unittest/generate-expired-unconstrained-root.py
+++ b/net/data/verify_certificate_chain_unittest/generate-expired-unconstrained-root.py
@@ -31,5 +31,6 @@ trusted = common.TrustAnchor(root, constrained=False)
# just a delivery mechanism for the name + SPKI.
time = common.MARCH_2_2015_UTC
verify_result = True
+errors = None
-common.write_test_file(__doc__, chain, trusted, time, verify_result)
+common.write_test_file(__doc__, chain, trusted, time, verify_result, errors)

Powered by Google App Engine
This is Rietveld 408576698