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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/system/log_testing.py

Issue 2578213005: Use underscores to separate words in filenames in webkitpy. (Closed)
Patch Set: Fix check for attribute in output_capture.py. Created 4 years 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: third_party/WebKit/Tools/Scripts/webkitpy/common/system/log_testing.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/logtesting.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/log_testing.py
similarity index 98%
rename from third_party/WebKit/Tools/Scripts/webkitpy/common/system/logtesting.py
rename to third_party/WebKit/Tools/Scripts/webkitpy/common/system/log_testing.py
index 9dd82898cf41b41d9addefd51726613194ec8520..a71bfe0b92209c23bde2b36cdd3909ccd4e7204b 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/logtesting.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/log_testing.py
@@ -33,6 +33,9 @@ see the TestLogStream class, and perhaps also the LogTesting class.
import logging
import unittest
+# pylint: disable=invalid-name
+# Camel-case names are used here to match the style of the TestCase methods.
+
class TestLogStream(object):
"""Represents a file-like object for unit-testing logging.

Powered by Google App Engine
This is Rietveld 408576698