--- a/security/manager/ssl/tests/unit/head_psm.js
+++ b/security/manager/ssl/tests/unit/head_psm.js
@@ -269,17 +269,17 @@ function getSSLStatistics() {
{ "hch_sid_stateless_resumes": ctypes.long },
{ "hch_sid_ticket_parse_failures": ctypes.long }]);
let SSL3StatisticsPtr = new ctypes.PointerType(SSL3Statistics);
let SSL_GetStatistics = null;
try {
SSL_GetStatistics = _getLibraryFunctionWithNoArguments("SSL_GetStatistics",
"ssl3",
SSL3StatisticsPtr);
- } catch(e) {
+ } catch (e) {
// On Windows, this is actually in the nss3 library.
SSL_GetStatistics = _getLibraryFunctionWithNoArguments("SSL_GetStatistics",
"nss3",
SSL3StatisticsPtr);
}
if (!SSL_GetStatistics) {
throw new Error("Failed to get SSL statistics");
}