Bug 1443557 - Start using the 'mach' formatter by default in |mach test| and |mach mochitest|, r=gbrown

This was originally supposed to be fixed in bug 1421799, but I either forgot to
switch the flag, or accidentally clobbered it while resolving conflicts.

MozReview-Commit-ID: Im8OKbswEf0
This commit is contained in:
Andrew Halberstadt
2018-03-12 16:46:53 -04:00
parent d0408fec39
commit 3f49b69f08

View File

@@ -64,7 +64,7 @@ class TestConfig(object):
level_desc = "The default log level to use when running tests with `mach test`."
level_choices = [l.lower() for l in log_levels]
return [
('test.format', 'string', format_desc, 'tbpl', {'choices': format_choices}),
('test.format', 'string', format_desc, 'mach', {'choices': format_choices}),
('test.level', 'string', level_desc, 'info', {'choices': level_choices}),
]