From ab00a9be1162410581a568e2bb18c171055edd4c Mon Sep 17 00:00:00 2001 From: Paul Adenot Date: Wed, 30 May 2018 18:23:37 +0200 Subject: [PATCH] Bug 1456265 - Also update test_channelSplitterNodeWithVolume.html --HG-- extra : source : ee0c4548a78a794de83ce82d994bd5cfa6c84e23 --- .../webaudio/test/test_channelSplitterNodeWithVolume.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dom/media/webaudio/test/test_channelSplitterNodeWithVolume.html b/dom/media/webaudio/test/test_channelSplitterNodeWithVolume.html index 8e16271f3679..f0451d9c67dc 100644 --- a/dom/media/webaudio/test/test_channelSplitterNodeWithVolume.html +++ b/dom/media/webaudio/test/test_channelSplitterNodeWithVolume.html @@ -32,9 +32,9 @@ addLoadEvent(function() { var source = context.createBufferSource(); var splitter = context.createChannelSplitter(); - is(splitter.channelCount, 2, "splitter node has 2 input channels by default"); - is(splitter.channelCountMode, "max", "Correct channelCountMode for the splitter node"); - is(splitter.channelInterpretation, "speakers", "Correct channelCountInterpretation for the splitter node"); + is(splitter.channelCount, 6, "splitter node has 2 input channels by default"); + is(splitter.channelCountMode, "explicit", "Correct channelCountMode for the splitter node"); + is(splitter.channelInterpretation, "discrete", "Correct channelCountInterpretation for the splitter node"); source.buffer = buffer; var gain = context.createGain();