Skip to content

Commit

Permalink
chore: use exported method name
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Dec 21, 2022
1 parent 0763c85 commit b80e6f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/excel-export/src/excelExport.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import * as ExcelBuilder from 'excel-builder-webpacker';
import { ContainerServiceStub } from '../../../test/containerServiceStub';
import { TranslateServiceStub } from '../../../test/translateServiceStub';
import { ExcelExportService } from './excelExport.service';
import { getExcelSameInputDataCallback, useCellFormatByFieldType } from './excelUtils';
import { getExcelInputDataCallback, useCellFormatByFieldType } from './excelUtils';

const pubSubServiceStub = {
publish: jest.fn(),
Expand Down Expand Up @@ -590,7 +590,7 @@ describe('ExcelExportService', () => {
]
});
expect(service.regularCellExcelFormats.position).toEqual({
getDataValueParser: getExcelSameInputDataCallback,
getDataValueParser: getExcelInputDataCallback,
stylesheetFormatterId: 4,
});
});
Expand Down

0 comments on commit b80e6f3

Please sign in to comment.