| Index: scripts/slave/recipe_modules/path/api.py
|
| diff --git a/scripts/slave/recipe_modules/path/api.py b/scripts/slave/recipe_modules/path/api.py
|
| index 39a786e02657063589c6ead00465a5e3c189fd3b..19de71445ffb22fcf6a064d47ebd40b6cbf94777 100644
|
| --- a/scripts/slave/recipe_modules/path/api.py
|
| +++ b/scripts/slave/recipe_modules/path/api.py
|
| @@ -18,11 +18,7 @@ def PathTostring(api, test):
|
| base_path = api.c.dynamic_paths[path.base]
|
| elif path.base in api.c.base_paths:
|
| if test.enabled:
|
| - # TODO(iannucci): Remove special case in followup cl
|
| - if path.base == 'root':
|
| - base_path = '[ROOT]'
|
| - else:
|
| - base_path = '[%s_ROOT]' % path.base.upper()
|
| + base_path = '[%s]' % path.base.upper()
|
| else: # pragma: no cover
|
| base_path = api.join(*api.c.base_paths[path.base])
|
| assert base_path, 'Could not get base %r for path' % path.base
|
|
|