From 15bbed093c570d41ecb149b2220a600bfe4650eb Mon Sep 17 00:00:00 2001 From: mshwed Date: Sat, 15 Feb 2025 22:23:49 -0500 Subject: [PATCH] fixed formatting --- tests/operations/index.mjs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/operations/index.mjs b/tests/operations/index.mjs index 259ec1e1..0f61fd90 100644 --- a/tests/operations/index.mjs +++ b/tests/operations/index.mjs @@ -11,7 +11,10 @@ * @license Apache-2.0 */ -import { setLongTestFailure, logTestReport } from "../lib/utils.mjs"; +import { + setLongTestFailure, + logTestReport, +} from "../lib/utils.mjs"; import TestRegister from "../lib/TestRegister.mjs"; import "./tests/AESKeyWrap.mjs"; @@ -165,14 +168,14 @@ const testStatus = { allTestsPassing: true, counts: { total: 0, - }, + } }; setLongTestFailure(); const logOpsTestReport = logTestReport.bind(null, testStatus); -(async function () { +(async function() { const results = await TestRegister.runTests(); logOpsTestReport(results); })();