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

Unified Diff: webrtc/audio/test/unittests/low_bandwidth_audio_test_test.py

Issue 2812273002: Fix lint errors to enable stricter PyLint rules (Closed)
Patch Set: Rebased Created 3 years, 8 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
Index: webrtc/audio/test/unittests/low_bandwidth_audio_test_test.py
diff --git a/webrtc/audio/test/unittests/low_bandwidth_audio_test_test.py b/webrtc/audio/test/unittests/low_bandwidth_audio_test_test.py
index e68a27319978088c2d2b2e03d8566471f7c56dda..18c1eb18877eaf88e019610775bec971189b2842 100755
--- a/webrtc/audio/test/unittests/low_bandwidth_audio_test_test.py
+++ b/webrtc/audio/test/unittests/low_bandwidth_audio_test_test.py
@@ -19,13 +19,13 @@ import low_bandwidth_audio_test
class TestExtractTestRuns(unittest.TestCase):
- def _testLog(self, log, *expected):
+ def _TestLog(self, log, *expected):
self.assertEqual(
tuple(low_bandwidth_audio_test.ExtractTestRuns(log.splitlines(True))),
expected)
def testLinux(self):
- self._testLog(LINUX_LOG,
+ self._TestLog(LINUX_LOG,
(None, 'GoodNetworkHighBitrate',
'/webrtc/src/resources/voice_engine/audio_tiny16.wav',
'/webrtc/src/out/LowBandwidth_GoodNetworkHighBitrate.wav'),
@@ -34,7 +34,7 @@ class TestExtractTestRuns(unittest.TestCase):
'/webrtc/src/out/LowBandwidth_Mobile2GNetwork.wav'))
def testAndroid(self):
- self._testLog(ANDROID_LOG,
+ self._TestLog(ANDROID_LOG,
('ddfa6149', 'Mobile2GNetwork',
'/sdcard/chromium_tests_root/resources/voice_engine/audio_tiny16.wav',
'/sdcard/chromium_tests_root/LowBandwidth_Mobile2GNetwork.wav'),

Powered by Google App Engine
This is Rietveld 408576698