]> granicus.if.org Git - libvpx/commitdiff
Fix a typo in the test cases for convolve test
authorchiyotsai <chiyotsai@google.com>
Wed, 23 Jan 2019 23:05:47 +0000 (15:05 -0800)
committerchiyotsai <chiyotsai@google.com>
Wed, 23 Jan 2019 23:15:30 +0000 (15:15 -0800)
BUG=webm:1591

Change-Id: I34aedcb5336a96e33932ce34967c12f187ee52e2

test/yuv_temporal_filter_test.cc

index db2faecbb8c686c0fa404b3573942a0451a2c729..7fa7ac1d6748534b74d54201ac57828156add2bd 100644 (file)
@@ -77,7 +77,7 @@ void ApplyReferenceFilter(
   u_dif.Set(0);
   v_dif.Set(0);
 
-  // How many bits to we want to round
+  // How many bits do we want to round
   ASSERT_GE(strength, 0);
   ASSERT_LE(strength, 6);
   int rounding = 0;
@@ -230,7 +230,7 @@ class YUVTemporalFilterTest
   ACMRandom rnd_;
 };
 
-TEST_P(YUVTemporalFilterTest, Use_32X32) {
+TEST_P(YUVTemporalFilterTest, Use32x32) {
   const int width = 32, height = 32;
   Buffer<uint8_t> y_src = Buffer<uint8_t>(width, height, 8);
   Buffer<uint8_t> y_pre = Buffer<uint8_t>(width, height, 0);
@@ -347,7 +347,7 @@ TEST_P(YUVTemporalFilterTest, Use_32X32) {
   }
 }
 
-TEST_P(YUVTemporalFilterTest, Use_16X16) {
+TEST_P(YUVTemporalFilterTest, Use16x16) {
   const int width = 32, height = 32;
   Buffer<uint8_t> y_src = Buffer<uint8_t>(width, height, 8);
   Buffer<uint8_t> y_pre = Buffer<uint8_t>(width, height, 0);