Fix cpplint errors in locations that are already being checked
Otherwise cpplint will trigger during presubmit for unrelated changes in these files. BUG=webrtc:5149 NOTRY=True Review-Url: https://codereview.webrtc.org/2767393003 Cr-Commit-Position: refs/heads/master@{#17371}
This commit is contained in:
@ -46,7 +46,8 @@ class TestVCMJitterEstimator : public ::testing::Test {
|
||||
// Generates some simple test data in the form of a sawtooth wave.
|
||||
class ValueGenerator {
|
||||
public:
|
||||
ValueGenerator(int32_t amplitude) : amplitude_(amplitude), counter_(0) {}
|
||||
explicit ValueGenerator(int32_t amplitude)
|
||||
: amplitude_(amplitude), counter_(0) {}
|
||||
virtual ~ValueGenerator() {}
|
||||
|
||||
int64_t Delay() { return ((counter_ % 11) - 5) * amplitude_; }
|
||||
@ -157,4 +158,4 @@ TEST_F(TestVCMJitterEstimator, TestConvergence) {
|
||||
EXPECT_NE(low_rate_iterations, 0);
|
||||
EXPECT_LE(low_rate_iterations, regular_iterations);
|
||||
}
|
||||
}
|
||||
} // namespace webrtc
|
||||
|
||||
Reference in New Issue
Block a user