From 2679716290702c6226339cf9ef5ebcb6980b4889 Mon Sep 17 00:00:00 2001 From: Ryan VanderMeulen Date: Mon, 14 Apr 2014 12:05:33 -0400 Subject: [PATCH] Backed out changeset a3337bda5a22 (bug 995972) for mozbuild test failures. CLOSED TREE --- python/mozbuild/mozbuild/testing.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python/mozbuild/mozbuild/testing.py b/python/mozbuild/mozbuild/testing.py index 67fb9600acc9..18739fd982bd 100644 --- a/python/mozbuild/mozbuild/testing.py +++ b/python/mozbuild/mozbuild/testing.py @@ -90,9 +90,7 @@ class TestMetadata(object): """ def fltr(tests): for test in tests: - if flavor and \ - (flavor == 'devtools' and test.get('flavor') != 'browser-chrome') or \ - (flavor != 'devtools' and test.get('flavor') != flavor): + if flavor and test.get('flavor') != flavor: continue if under_path \