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

Unified Diff: test/mac/gyptest-rpath.py

Issue 739303003: Cleanup pylint errors (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Fix mac 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
« no previous file with comments | « test/lib/TestWin.py ('k') | test/msvs/buildevents/gyptest-ninja-warnings.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mac/gyptest-rpath.py
diff --git a/test/mac/gyptest-rpath.py b/test/mac/gyptest-rpath.py
index 2440d548e639112ff35f93ac1d297cc0a55f7f1c..a66e917ca061c8a99a704cc984ad24eb40c63182 100644
--- a/test/mac/gyptest-rpath.py
+++ b/test/mac/gyptest-rpath.py
@@ -30,20 +30,20 @@ if sys.platform == 'darwin':
assert not proc.returncode
return r.findall(o)
- if (GetRpaths('libdefault_rpath.dylib') != []):
+ if GetRpaths('libdefault_rpath.dylib') != []:
test.fail_test()
- if (GetRpaths('libexplicit_rpath.dylib') != ['@executable_path/.']):
+ if GetRpaths('libexplicit_rpath.dylib') != ['@executable_path/.']:
test.fail_test()
if (GetRpaths('libexplicit_rpaths_escaped.dylib') !=
['First rpath', 'Second rpath']):
test.fail_test()
- if (GetRpaths('My Framework.framework/My Framework') != ['@loader_path/.']):
+ if GetRpaths('My Framework.framework/My Framework') != ['@loader_path/.']:
test.fail_test()
- if (GetRpaths('executable') != ['@executable_path/.']):
+ if GetRpaths('executable') != ['@executable_path/.']:
test.fail_test()
test.pass_test()
« no previous file with comments | « test/lib/TestWin.py ('k') | test/msvs/buildevents/gyptest-ninja-warnings.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698