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

Unified Diff: content/child/webcrypto/test/sha_unittest.cc

Issue 508643003: Rename digest.json --> sha.json (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | content/test/data/webcrypto/digest.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/webcrypto/test/sha_unittest.cc
diff --git a/content/child/webcrypto/test/sha_unittest.cc b/content/child/webcrypto/test/sha_unittest.cc
index 6019c5bb77b60847e8f3f1e583a87a0c256dc86b..65c19c00353a0c3810f34c5395cb9f9b040da4d7 100644
--- a/content/child/webcrypto/test/sha_unittest.cc
+++ b/content/child/webcrypto/test/sha_unittest.cc
@@ -22,8 +22,7 @@ namespace {
TEST(WebCryptoShaTest, DigestSampleSets) {
scoped_ptr<base::ListValue> tests;
- // TODO(eroman): rename to sha.json
- ASSERT_TRUE(ReadJsonTestFileToList("digest.json", &tests));
+ ASSERT_TRUE(ReadJsonTestFileToList("sha.json", &tests));
for (size_t test_index = 0; test_index < tests->GetSize(); ++test_index) {
SCOPED_TRACE(test_index);
@@ -44,7 +43,7 @@ TEST(WebCryptoShaTest, DigestSampleSets) {
TEST(WebCryptoShaTest, DigestSampleSetsInChunks) {
scoped_ptr<base::ListValue> tests;
- ASSERT_TRUE(ReadJsonTestFileToList("digest.json", &tests));
+ ASSERT_TRUE(ReadJsonTestFileToList("sha.json", &tests));
for (size_t test_index = 0; test_index < tests->GetSize(); ++test_index) {
SCOPED_TRACE(test_index);
« no previous file with comments | « no previous file | content/test/data/webcrypto/digest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698