From: chiyotsai Date: Wed, 23 Jan 2019 23:05:47 +0000 (-0800) Subject: Fix a typo in the test cases for convolve test X-Git-Tag: v1.8.1~297 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3210930f54693fe60227784f6394f9b31c5947b;p=libvpx Fix a typo in the test cases for convolve test BUG=webm:1591 Change-Id: I34aedcb5336a96e33932ce34967c12f187ee52e2 --- diff --git a/test/yuv_temporal_filter_test.cc b/test/yuv_temporal_filter_test.cc index db2faecbb..7fa7ac1d6 100644 --- a/test/yuv_temporal_filter_test.cc +++ b/test/yuv_temporal_filter_test.cc @@ -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 y_src = Buffer(width, height, 8); Buffer y_pre = Buffer(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 y_src = Buffer(width, height, 8); Buffer y_pre = Buffer(width, height, 0);