| 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);
|
|
|