Fix schedule hook test (#18719)

This commit is contained in:
ian
2023-05-25 16:35:39 +08:00
committed by GitHub
parent 80cca54d18
commit 0b4542fd25

View File

@@ -143,8 +143,8 @@ describe('Flows Schedule Hook Tests', () => {
).body.data[0].count.id;
// Assert
expect(redisRunCount).toBe(5);
expect(memoryRunCount).toBe(5);
expect(parseInt(redisRunCount)).toBe(5);
expect(parseInt(memoryRunCount)).toBe(5);
});
});
});