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

Unified Diff: scripts/tools/unittests/buildbot_tool_test.py

Issue 1153203003: Update buildbot_tool and builders.pyl templates to remove 'master_type'. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 7 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
Index: scripts/tools/unittests/buildbot_tool_test.py
diff --git a/scripts/tools/unittests/buildbot_tool_test.py b/scripts/tools/unittests/buildbot_tool_test.py
index 6ab20c978a187549c05ce36993ee22f56bdb7cac..31a16fda57cae47083eb1e6f6812435766ae4e29 100755
--- a/scripts/tools/unittests/buildbot_tool_test.py
+++ b/scripts/tools/unittests/buildbot_tool_test.py
@@ -70,7 +70,7 @@ def _restore_constants(orig_values):
class GenTest(unittest.TestCase):
def _run_gen(self, builders_pyl, master_cfg=FAKE_MASTER_CFG_TEMPLATE):
files = {
- '/build/templates/waterfall/master.cfg': master_cfg,
+ '/build/templates/master.cfg': master_cfg,
'/build/masters/master.test/builders.pyl': builders_pyl,
}
fs = fake_filesystem.FakeFilesystem(files=files.copy())
@@ -118,7 +118,7 @@ class GenTest(unittest.TestCase):
def test_bad_template(self):
files = {
- '/build/templates/waterfall/master.cfg': '%(unknown_key)s',
+ '/build/templates/master.cfg': '%(unknown_key)s',
'/build/masters/master.test/builders.pyl': FAKE_BUILDERS_PYL,
}
fs = fake_filesystem.FakeFilesystem(files=files.copy())

Powered by Google App Engine
This is Rietveld 408576698