Skip to content

Commit bbda4bd

Browse files
spelling correction for return
1 parent 363a609 commit bbda4bd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/reducers/__tests__/monthlyDashboardDataReducer.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe('Monthly Dashboard Data Reducer', () => {
2828

2929
});
3030

31-
it('should retrun null as the initial state', () => {
31+
it('should return null as the initial state', () => {
3232

3333
const result = monthlyDashboardDataReducer(undefined, {} );
3434
expect(result).toBeNull();
@@ -40,7 +40,7 @@ describe('Monthly Dashboard Data Reducer', () => {
4040
type: 'UNKNOWN_ACTION',
4141
payload: { projectName: 'Project Name', timeSpent_hrs : '0' }
4242
};
43-
43+
4444
const result = monthlyDashboardDataReducer(monthlyDashboardData, action);
4545
expect(result).toEqual(monthlyDashboardData);
4646
});

0 commit comments

Comments
 (0)