diff options
author | Simon Warta <[email protected]> | 2015-07-24 23:46:44 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2015-07-24 23:46:44 +0200 |
commit | 550d9fd71cf6c78c86cc5a695fafa17e72ae6b18 (patch) | |
tree | 618d748b2696c50b911e55ef61dea3df30aad232 /src/tests | |
parent | 99a11fd5f6d54b599fc5878364df8a9d6f024ad3 (diff) |
Fix typos
Thanks to @vlajos https://github.com/vlajos/misspell_fixer
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/nist_x509.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tests/nist_x509.cpp b/src/tests/nist_x509.cpp index 8769d3ce2..04b569d32 100644 --- a/src/tests/nist_x509.cpp +++ b/src/tests/nist_x509.cpp @@ -212,14 +212,14 @@ std::map<size_t, Path_Validation_Result::Code> get_expected() In the case of the tests currently in the suite, the default method (with acceptable policy being "any-policy" and with no - explict policy required), will almost always result in a verified + explicit policy required), will almost always result in a verified status. This is not particularly helpful. So, we should do several different tests for each test set: 1) With the user policy as any-policy and no explicit policy 2) With the user policy as any-policy and an explicit policy required 3) With the user policy as test-policy-1 (2.16.840.1.101.3.1.48.1) and - an explict policy required + an explicit policy required 4) With the user policy as either test-policy-1 or test-policy-2 and an explicit policy required @@ -238,9 +238,9 @@ std::map<size_t, Path_Validation_Result::Code> get_expected() expected_results[43] = Certificate_Status_Code::VERIFIED; expected_results[44] = Certificate_Status_Code::VERIFIED; - //expected_results[45] = Certificate_Status_Code::EXPLICT_POLICY_REQUIRED; + //expected_results[45] = Certificate_Status_Code::EXPLICIT_POLICY_REQUIRED; //expected_results[46] = Certificate_Status_Code::ACCEPT; - //expected_results[47] = Certificate_Status_Code::EXPLICT_POLICY_REQUIRED; + //expected_results[47] = Certificate_Status_Code::EXPLICIT_POLICY_REQUIRED; expected_results[48] = Certificate_Status_Code::VERIFIED; expected_results[49] = Certificate_Status_Code::VERIFIED; |