Skip to content

Commit 70bd11f

Browse files
committed
chore: fix failing test
1 parent 400019c commit 70bd11f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/excel-builder-vanilla/src/__tests__/factory.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ describe('ExcelExportService', () => {
6868
describe('downloadExcelFile() method', () => {
6969
it('should be able to download Excel file via browser', async () => {
7070
const createUrlSpy = vi.spyOn(URL, 'createObjectURL');
71-
const revokeUrlSpy = vi.spyOn(URL, 'createObjectURL');
71+
const revokeUrlSpy = vi.spyOn(URL, 'revokeObjectURL');
7272
const anchorSpy = vi.spyOn(document, 'createElement');
7373

7474
const workbook = createWorkbook();

0 commit comments

Comments
 (0)