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

Unified Diff: tools/telemetry/telemetry/core/platform/cros_interface_unittest.py

Issue 739623005: [Telemetry] Resolve errors due to new pylint checker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ready to land Created 6 years, 1 month 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: tools/telemetry/telemetry/core/platform/cros_interface_unittest.py
diff --git a/tools/telemetry/telemetry/core/platform/cros_interface_unittest.py b/tools/telemetry/telemetry/core/platform/cros_interface_unittest.py
index d8bcded6277f8c417e4232ef995455f61a235066..eb8c235d001fcd449777ad794e040c33638dddad 100644
--- a/tools/telemetry/telemetry/core/platform/cros_interface_unittest.py
+++ b/tools/telemetry/telemetry/core/platform/cros_interface_unittest.py
@@ -161,12 +161,12 @@ class CrOSInterfaceTest(unittest.TestCase):
# Check arguments with no special characters
stdout, _ = cri.RunCmdOnDevice(['echo', '--arg1=value1', '--arg2=value2',
'--arg3="value3"'])
- assert(stdout.strip() == '--arg1=value1 --arg2=value2 --arg3=value3')
+ assert stdout.strip() == '--arg1=value1 --arg2=value2 --arg3=value3'
# Check argument with special characters escaped
stdout, _ = cri.RunCmdOnDevice(['echo', '--arg=A\\; echo \\"B\\"'])
- assert(stdout.strip() == '--arg=A; echo "B"')
+ assert stdout.strip() == '--arg=A; echo "B"'
# Check argument with special characters in quotes
stdout, _ = cri.RunCmdOnDevice(['echo', "--arg='$HOME;;$PATH'"])
- assert(stdout.strip() == "--arg=$HOME;;$PATH")
+ assert stdout.strip() == "--arg=$HOME;;$PATH"

Powered by Google App Engine
This is Rietveld 408576698