diff options
author | jcampan@google.com <jcampan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-31 21:15:45 +0000 |
---|---|---|
committer | jcampan@google.com <jcampan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-31 21:15:45 +0000 |
commit | d0a918234ecc13dbf5fa11fad7122f7e81e38840 (patch) | |
tree | 99981bce82ccff1c2380c4815138b33c4bac4961 /chrome/browser/ssl_uitest.cc | |
parent | e466e1397d0462ed58e3307cec829d75bac6ed55 (diff) | |
download | chromium_src-d0a918234ecc13dbf5fa11fad7122f7e81e38840.zip chromium_src-d0a918234ecc13dbf5fa11fad7122f7e81e38840.tar.gz chromium_src-d0a918234ecc13dbf5fa11fad7122f7e81e38840.tar.bz2 |
Updated the SSL UI test with the common name from the new cert.
BUG=1293555
TEST=Run the ssl ui tests.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@199 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ssl_uitest.cc')
-rw-r--r-- | chrome/browser/ssl_uitest.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/chrome/browser/ssl_uitest.cc b/chrome/browser/ssl_uitest.cc index ebe14b6..01d38c0 100644 --- a/chrome/browser/ssl_uitest.cc +++ b/chrome/browser/ssl_uitest.cc @@ -46,14 +46,12 @@ const int kOKHTTPSPort = 9443; const int kBadHTTPSPort = 9666; // The issuer name of the cert that should be trusted for the test to work. -const wchar_t kCertIssuerName[] = L"unittest.example.com"; +const wchar_t kCertIssuerName[] = L"Test CA"; class SSLUITest : public UITest { protected: SSLUITest() { - // TODO(jcampan): bug #1293555 Reenable the CA trusted check once we have - // imported the new certs (with issuer name: unittest.example.com). - // CheckCATrusted(); + CheckCATrusted(); dom_automation_enabled_ = true; PathService::Get(base::DIR_SOURCE_ROOT, &cert_dir_); cert_dir_ += L"/chrome/test/data/ssl/certs/"; |