Skip to content

Commit bb18a63

Browse files
committed
chore(pdf): fixing linting error in test
1 parent a8c9c68 commit bb18a63

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

projects/igniteui-angular/grids/core/src/services/pdf/pdf-exporter.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4190,7 +4190,9 @@ describe('PDF Exporter', () => {
41904190
origAddFileToVFS = api.addFileToVFS;
41914191
origAddFont = api.addFont;
41924192

4193-
addFileToVFSSpy = jasmine.createSpy('addFileToVFS').and.callFake(function () { return this; });
4193+
addFileToVFSSpy = jasmine.createSpy('addFileToVFS').and.callFake(function () {
4194+
return this;
4195+
});
41944196
addFontSpy = jasmine.createSpy('addFont').and.returnValue('');
41954197

41964198
api.addFileToVFS = addFileToVFSSpy;

0 commit comments

Comments
 (0)