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

Unified Diff: net/cert/internal/path_builder_unittest.cc

Issue 2346663002: Generalize rebase-errors.py so it works for other files. (Closed)
Patch Set: moar comment wording Created 4 years, 3 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
« no previous file with comments | « no previous file | net/cert/internal/path_builder_verify_certificate_chain_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/internal/path_builder_unittest.cc
diff --git a/net/cert/internal/path_builder_unittest.cc b/net/cert/internal/path_builder_unittest.cc
index 3e6391706a015e1e4184b4a65e316576c7986b27..5f0a2eb62348d5c64db87734cee6f22b67784b9c 100644
--- a/net/cert/internal/path_builder_unittest.cc
+++ b/net/cert/internal/path_builder_unittest.cc
@@ -497,18 +497,19 @@ class PathBuilderKeyRolloverTest : public ::testing::Test {
bool unused_result;
std::string unused_errors;
- ReadVerifyCertChainTestFromFile("key-rollover-oldchain.pem", &path,
- &oldroot_, &time_, &unused_result,
- &unused_errors);
+ ReadVerifyCertChainTestFromFile(
+ "net/data/verify_certificate_chain_unittest/key-rollover-oldchain.pem",
+ &path, &oldroot_, &time_, &unused_result, &unused_errors);
ASSERT_EQ(2U, path.size());
target_ = path[0];
oldintermediate_ = path[1];
ASSERT_TRUE(target_);
ASSERT_TRUE(oldintermediate_);
- ReadVerifyCertChainTestFromFile("key-rollover-longrolloverchain.pem", &path,
- &oldroot_, &time_, &unused_result,
- &unused_errors);
+ ReadVerifyCertChainTestFromFile(
+ "net/data/verify_certificate_chain_unittest/"
+ "key-rollover-longrolloverchain.pem",
+ &path, &oldroot_, &time_, &unused_result, &unused_errors);
ASSERT_EQ(4U, path.size());
newintermediate_ = path[1];
newroot_ = path[2];
« no previous file with comments | « no previous file | net/cert/internal/path_builder_verify_certificate_chain_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698