From e6233405ff7b22b21932de02d05298026d8cfe54 Mon Sep 17 00:00:00 2001 From: Matthew Ross Date: Wed, 1 Jan 2020 17:01:21 -0500 Subject: [PATCH] Final Codacy fix and App unit tests pass (not API yet) --- README.md | 1 - test/app/board/column/column.component.spec.ts | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index b977142..39c739c 100644 --- a/README.md +++ b/README.md @@ -206,5 +206,4 @@ TypeScript | 36 | 884 | 181 | 3110 PHP | 11 | 742 | 16 | 2205 *SUM:* | *47* | *1626* | *197* | *5315* - Command: `cloc --exclude-ext=xml test/` diff --git a/test/app/board/column/column.component.spec.ts b/test/app/board/column/column.component.spec.ts index 4edcd46..cb9dc39 100644 --- a/test/app/board/column/column.component.spec.ts +++ b/test/app/board/column/column.component.spec.ts @@ -372,7 +372,7 @@ describe('ColumnDisplay', () => { const today = new Date(); const yesterday = new Date( - today.getFullYear(), today.getMonth(), today.getDay() - 1 + today.getFullYear(), today.getMonth(), today.getDay() - 2 ); component.viewModalProps = { due_date: today } as any;