summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_retry_0rtt.js
diff options
context:
space:
mode:
Diffstat (limited to 'netwerk/test/unit/test_retry_0rtt.js')
-rw-r--r--netwerk/test/unit/test_retry_0rtt.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/netwerk/test/unit/test_retry_0rtt.js b/netwerk/test/unit/test_retry_0rtt.js
index e1770ab8a1..661d7d2ab4 100644
--- a/netwerk/test/unit/test_retry_0rtt.js
+++ b/netwerk/test/unit/test_retry_0rtt.js
@@ -11,7 +11,7 @@ var httpServer = null;
let handlerCallbacks = {};
-function listenHandler(metadata, response) {
+function listenHandler(metadata) {
info(metadata.path);
handlerCallbacks[metadata.path] = (handlerCallbacks[metadata.path] || 0) + 1;
}
@@ -48,6 +48,12 @@ add_setup(
);
let nssComponent = Cc["@mozilla.org/psm;1"].getService(Ci.nsINSSComponent);
await nssComponent.asyncClearSSLExternalAndInternalSessionCache();
+
+ // See Bug 1878505
+ Services.prefs.setIntPref("network.http.speculative-parallel-limit", 0);
+ registerCleanupFunction(async () => {
+ Services.prefs.clearUserPref("network.http.speculative-parallel-limit");
+ });
}
);
@@ -83,7 +89,7 @@ add_task(
var retryDomains = [
"0rtt-alert-bad-mac.example.com",
"0rtt-alert-protocol-version.example.com",
- //"0rtt-alert-unexpected.example.com", // TODO(bug 1753204): uncomment this
+ "0rtt-alert-unexpected.example.com",
];
Services.prefs.setCharPref("network.dns.localDomains", retryDomains);