Skip to content

Commit 9af68be

Browse files
author
Nicole Garcia
committed
TT-665 clean code
1 parent 3d23d68 commit 9af68be

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/app/modules/time-clock/components/entry-fields/entry-fields.component.spec.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -364,40 +364,40 @@ describe('EntryFieldsComponent', () => {
364364
it('activites are ordered using the payload of the action', () => {
365365
const activities = [
366366
{
367-
id: '001',
367+
id: '004',
368368
name: 'Meeting',
369369
description: 'Some description'
370370
},
371371
{
372-
id: '002',
373-
name: 'ABC',
372+
id: '005',
373+
name: 'ABCD',
374374
description: 'Some description'
375375
},
376376
{
377-
id: '003',
378-
name: 'XYZ',
377+
id: '006',
378+
name: 'XYZA',
379379
description: 'Some description'
380380
},
381381
];
382382

383383
const activitiesOrdered = [
384384
{
385-
id: '002',
386-
name: 'ABC',
385+
id: '005',
386+
name: 'ABCD',
387387
description: 'Some description'
388388
},
389389
{
390-
id: '001',
390+
id: '004',
391391
name: 'Meeting',
392392
description: 'Some description'
393393
},
394394
{
395-
id: '003',
396-
name: 'XYZ',
395+
id: '006',
396+
name: 'XYZA',
397397
description: 'Some description'
398398
},
399399
];
400-
400+
401401
const actionSubject = TestBed.inject(ActionsSubject) as ActionsSubject;
402402
const action = {
403403
type: ActivityManagementActionTypes.LOAD_ACTIVITIES_SUCCESS,

0 commit comments

Comments
 (0)