From abcff8b11aed122d62f5ae26301dad3c426b50c3 Mon Sep 17 00:00:00 2001 From: MeridianAlgo Date: Mon, 4 May 2026 20:01:15 -0500 Subject: [PATCH] Apply suggested fix to tests/utils_deep_test.ts from Copilot Autofix Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- tests/utils_deep_test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/utils_deep_test.ts b/tests/utils_deep_test.ts index 51ff201..9f6bd45 100644 --- a/tests/utils_deep_test.ts +++ b/tests/utils_deep_test.ts @@ -13,9 +13,7 @@ async function main() { console.log('[1/2] Time Utilities'); const now = new Date(); console.log(` - Format Date: ${TimeUtils.formatDate(now)}`); - // Testing a Monday afternoon (Market should be open) - const monday = new Date(2024, 0, 15, 14, 0); // Jan 15, 2024 is MLK Day though! - // Let's pick a Tuesday Jan 16, 2024 + // Jan 15, 2024 is MLK Day (market holiday), so test with Tuesday Jan 16, 2024. const tuesday = new Date(2024, 0, 16, 14, 0); console.log(` - Is Market Open (Jan 16, 14:00): ${TimeUtils.isMarketOpen(tuesday)}`); console.log(` - Trading Days between Jan 1 and Jan 10: ${TimeUtils.tradingDays(new Date(2024, 0, 1), new Date(2024, 0, 10))}`);