tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 1a9db334d53b5380777ef3885c095e9668c1745a
parent 0110bf9d26fc16890ce1e47e35c129a79ffb443f
Author: Nico Grunbaum <na-g@nostrum.com>
Date:   Thu,  2 Oct 2025 18:59:52 +0000

Bug 1988565 - update mochitest expectations;r=jib

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

Diffstat:
Mdom/media/webrtc/tests/mochitests/pc.js | 7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/dom/media/webrtc/tests/mochitests/pc.js b/dom/media/webrtc/tests/mochitests/pc.js @@ -2148,10 +2148,9 @@ PeerConnectionWrapper.prototype = { "Have at least " + nin + " inbound-rtp stat(s) *" ); - is( - counters["outbound-rtp"] || 0, - nout, - "Have " + nout + " outbound-rtp stat(s)" + ok( + (counters["outbound-rtp"] || 0) >= nout, + "Have at least" + nout + " outbound-rtp stat(s)" ); var numLocalCandidates = counters["local-candidate"] || 0;