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

Unified Diff: media/mp4/aac_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/filters/chunk_demuxer_unittest.cc ('k') | media/mp4/box_reader_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mp4/aac_unittest.cc
diff --git a/media/mp4/aac_unittest.cc b/media/mp4/aac_unittest.cc
index c5b23d1161ee13e6ad5cbd67ac2e475c566943e6..d9ce22db3fee23e05e2c0e2d426f7cedae331c97 100644
--- a/media/mp4/aac_unittest.cc
+++ b/media/mp4/aac_unittest.cc
@@ -39,7 +39,7 @@ TEST(AACTest, ExtensionTest) {
// Mono channel layout should only be reported if SBR is not
// specified. Otherwise stereo should be reported.
// See ISO-14496-3 Section 1.6.6.1.2 for details about this special casing.
-TEST(AACTest, TestImplicitSBR_ChannelConfig0) {
+TEST(AACTest, ImplicitSBR_ChannelConfig0) {
AAC aac;
uint8 buffer[] = {0x13, 0x08};
std::vector<uint8> data;
@@ -58,7 +58,7 @@ TEST(AACTest, TestImplicitSBR_ChannelConfig0) {
}
// Tests implicit SBR with a stereo channel config.
-TEST(AACTest, TestImplicitSBR_ChannelConfig1) {
+TEST(AACTest, ImplicitSBR_ChannelConfig1) {
AAC aac;
uint8 buffer[] = {0x13, 0x10};
std::vector<uint8> data;
« no previous file with comments | « media/filters/chunk_demuxer_unittest.cc ('k') | media/mp4/box_reader_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698