Skip to content

Commit

Permalink
Bug 1546655 - Fix test filtering in test_streams_element_capture.html…
Browse files Browse the repository at this point in the history
…. r=padenot

Differential Revision: https://phabricator.services.mozilla.com/D28666

--HG--
extra : moz-landing-system : lando
  • Loading branch information
Pehrsons committed Apr 24, 2019
1 parent 1024a69 commit 4021f52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dom/media/test/test_streams_element_capture.html
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@
]});
let tests = gPlayTests;
// Filter out bug1377278.webm due to bug 1541401.
tests = gPlayTests.filter(t => !t.name.includes("1377278"));
tests = tests.filter(t => !t.name.includes("1377278"));
// Filter out ambisonics.mp4 due to bug 1546655.
tests = gPlayTests.filter(t => !t.name.includes("ambisonics"));
tests = tests.filter(t => !t.name.includes("ambisonics"));
manager.runTests(tests, startTest);
})();
</script>
Expand Down

0 comments on commit 4021f52

Please sign in to comment.