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

Unified Diff: media/webm/webm_webvtt_parser_unittest.cc

Issue 21536004: Drop redundant "TEST" prefix from test names in media code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | « media/webm/webm_tracks_parser_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/webm/webm_webvtt_parser_unittest.cc
diff --git a/media/webm/webm_webvtt_parser_unittest.cc b/media/webm/webm_webvtt_parser_unittest.cc
index 6ef744eba5c9e467714f2d4bc4523c04d4b3ccf4..db514a1247ca398ae03a5c30ed7c9e12f3680053 100644
--- a/media/webm/webm_webvtt_parser_unittest.cc
+++ b/media/webm/webm_webvtt_parser_unittest.cc
@@ -33,7 +33,7 @@ class WebMWebVTTParserTest : public testing::Test {
WebMWebVTTParserTest() {}
};
-TEST_F(WebMWebVTTParserTest, TestBlank) {
+TEST_F(WebMWebVTTParserTest, Blank) {
InSequence s;
const Cue cue = EncodeCue("", "", "Subtitle");
@@ -45,7 +45,7 @@ TEST_F(WebMWebVTTParserTest, TestBlank) {
EXPECT_EQ(content, "Subtitle");
}
-TEST_F(WebMWebVTTParserTest, TestId) {
+TEST_F(WebMWebVTTParserTest, Id) {
InSequence s;
for (int i = 1; i <= 9; ++i) {
@@ -60,7 +60,7 @@ TEST_F(WebMWebVTTParserTest, TestId) {
}
}
-TEST_F(WebMWebVTTParserTest, TestSettings) {
+TEST_F(WebMWebVTTParserTest, Settings) {
InSequence s;
enum { kSettingsCount = 4 };
@@ -81,7 +81,7 @@ TEST_F(WebMWebVTTParserTest, TestSettings) {
}
}
-TEST_F(WebMWebVTTParserTest, TestContent) {
+TEST_F(WebMWebVTTParserTest, Content) {
InSequence s;
enum { kContentCount = 4 };
« no previous file with comments | « media/webm/webm_tracks_parser_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698