Index: third_party/WebKit/Tools/Scripts/webkitpy/pylintrc |
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/pylintrc b/third_party/WebKit/Tools/Scripts/webkitpy/pylintrc |
index 79252822e372b77d6bb2ea358a5b54885825a94a..8042759d592080452b897c7d72f7a2fda050b127 100644 |
--- a/third_party/WebKit/Tools/Scripts/webkitpy/pylintrc |
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/pylintrc |
@@ -190,7 +190,7 @@ class-rgx=[A-Z_][a-zA-Z0-9]+$ |
function-rgx=[a-z_][a-z0-9_]{2,30}$ |
# Regular expression which should only match correct method names |
-method-rgx=[a-z_][a-z0-9_]{2,30}$ |
+method-rgx=(([a-z_][a-z0-9_]{2,30})|(test_[a-z0-9_]{2,60}))$ |
qyearsley
2016/07/27 22:24:09
Many test methods in unit tests have names much lo
|
# Regular expression which should only match correct instance attribute names |
attr-rgx=[a-z_][a-z0-9_]{1,30}$ |