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

Unified Diff: recipes.py

Issue 2664223002: Add unit tests for overrides in multi-repo workflow (Closed)
Patch Set: reverts Created 3 years, 11 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 | « recipe_engine/package.py ('k') | unittests/override_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipes.py
diff --git a/recipes.py b/recipes.py
index ab9cc93e867c42f5ff6ba28e442ad1d28234f155..8c0d50a334377a5a6e2c9d4c89c031443fd8ef93 100755
--- a/recipes.py
+++ b/recipes.py
@@ -10,7 +10,6 @@ infra/config/recipes.cfg.
"""
import argparse
-import collections
import json
import logging
import os
@@ -281,7 +280,7 @@ class ProjectOverrideAction(argparse.Action):
v = getattr(namespace, self.dest, None)
if v is None:
- v = collections.OrderedDict()
+ v = {}
setattr(namespace, self.dest, v)
if v.get(project_id):
« no previous file with comments | « recipe_engine/package.py ('k') | unittests/override_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698