From ec1789556901346c04a95ac7d61e02c137fc08df Mon Sep 17 00:00:00 2001 From: robertIsaac Date: Thu, 20 Feb 2025 21:20:47 +0200 Subject: [PATCH] test: fix failed test --- libs/core/table/directives/table-row.directive.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/core/table/directives/table-row.directive.spec.ts b/libs/core/table/directives/table-row.directive.spec.ts index 8803adebb73..b51e217785c 100644 --- a/libs/core/table/directives/table-row.directive.spec.ts +++ b/libs/core/table/directives/table-row.directive.spec.ts @@ -72,7 +72,7 @@ describe('TableRowDirective', () => { expect(getInnerTextFromNodes()).toEqual(keys); - keys = component.keys.reverse(); + keys = [...component.keys].reverse(); (component.tableRow)._resetCells(keys);