Skip to content

Commit

Permalink
fix typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
RicardoE105 committed Feb 20, 2025
1 parent 360867f commit 2ea4213
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,6 @@ describe('FolderRepository', () => {

describe('select', () => {
let testFolder: Folder;
let workflowWithTestFolder: WorkflowEntity;

beforeEach(async () => {
const parentFolder = await createFolder(project, { name: 'Parent Folder' });
Expand All @@ -257,7 +256,7 @@ describe('FolderRepository', () => {
parentFolder,
tags: [tag],
});
workflowWithTestFolder = await createWorkflow({ parentFolder: testFolder });
await createWorkflow({ parentFolder: testFolder });
});

it('should select only id and name when specified', async () => {
Expand Down

0 comments on commit 2ea4213

Please sign in to comment.