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

Unified Diff: chrome/test/mini_installer/test_installer.py

Issue 365143002: mini_installer code cleanups (no functional changes). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: flip component logic Created 6 years, 5 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
« no previous file with comments | « chrome/installer/mini_installer/mini_installer_constants.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/mini_installer/test_installer.py
diff --git a/chrome/test/mini_installer/test_installer.py b/chrome/test/mini_installer/test_installer.py
index af6b2c3a33108757dd5dc9505d06a2325b18969f..25f5baff8aa7ba26a7738c00f3bc0636bd013ee0 100644
--- a/chrome/test/mini_installer/test_installer.py
+++ b/chrome/test/mini_installer/test_installer.py
@@ -254,7 +254,7 @@ def IsComponentBuild(mini_installer_path):
query_command = mini_installer_path + ' --query-component-build'
script_dir = os.path.dirname(os.path.abspath(__file__))
exit_status = subprocess.call(query_command, shell=True, cwd=script_dir)
- return exit_status != 0
+ return exit_status == 0
def main():
« no previous file with comments | « chrome/installer/mini_installer/mini_installer_constants.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698