cleanup cpplint warnings Suggested by James Zern to clear out cpplint warnings for all unit test code. Change-Id: I731a3fa4d2a257eb9ef733426ba84286fbd7ea34
diff --git a/test/fdct4x4_test.cc b/test/fdct4x4_test.cc index 39f915c..ea40ca6 100644 --- a/test/fdct4x4_test.cc +++ b/test/fdct4x4_test.cc
@@ -15,10 +15,10 @@ #include "third_party/googletest/src/include/gtest/gtest.h" extern "C" { -#include "vp9_rtcd.h" +#include "./vp9_rtcd.h" } -#include "acm_random.h" +#include "test/acm_random.h" #include "vpx/vpx_integer.h" #include "vpx_ports/mem.h" @@ -156,7 +156,7 @@ RunFwdTxfm(test_input_block, test_temp_block, dst, pitch, tx_type_); for (int j = 0; j < 16; ++j) { - if(test_temp_block[j] > 0) { + if (test_temp_block[j] > 0) { test_temp_block[j] += 2; test_temp_block[j] /= 4; test_temp_block[j] *= 4;