Backed out changeset b8760b0b11ac (
bug 1274980) on suspicion of breaking marionette tests in taskcluster. r=backout on a CLOSED TREE
--- a/taskcluster/taskgraph/test/test_transforms_base.py
+++ b/taskcluster/taskgraph/test/test_transforms_base.py
@@ -76,30 +76,16 @@ class TestKeyedBy(unittest.TestCase):
'a': 10,
'b': 20,
},
},
'other-value': 'b',
}
self.assertEqual(get_keyed_by(test, 'option', 'x'), 20)
- def test_by_value_regex(self):
- test = {
- 'test-name': 'tname',
- 'option': {
- 'by-test-platform': {
- 'macosx64/.*': 10,
- 'linux64/debug': 20,
- 'default': 5,
- },
- },
- 'test-platform': 'macosx64/debug',
- }
- self.assertEqual(get_keyed_by(test, 'option', 'x'), 10)
-
def test_by_value_default(self):
test = {
'test-name': 'tname',
'option': {
'by-other-value': {
'a': 10,
'default': 30,
},