From cc7b2726057d4dd413a76f5cb067073eed1a29c1 Mon Sep 17 00:00:00 2001 From: andreaNeki Date: Wed, 23 Oct 2024 09:22:29 -0300 Subject: [PATCH] Trying to solve the final spaces not allowed error --- .../statistics-table/statistics-table.component.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/statistics-page/statistics-table/statistics-table.component.spec.ts b/src/app/statistics-page/statistics-table/statistics-table.component.spec.ts index 60fb0fdb007..15c203ff8ed 100644 --- a/src/app/statistics-page/statistics-table/statistics-table.component.spec.ts +++ b/src/app/statistics-page/statistics-table/statistics-table.component.spec.ts @@ -97,8 +97,9 @@ describe('StatisticsTableComponent', () => { .toEqual('8'); }); }); - + describe('getObjectHeaderLabel', () => { + it('should return the correct label for TotalVisits', () => { expect(component.getObjectHeaderLabel('TotalVisits')).toEqual('statistics.table.header.TotalVisits'); });