Skip to content

Commit

Permalink
cicd fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-fabian committed Jul 7, 2024
1 parent a4b8b0d commit bf49939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__tests__/thread-job.service.heavy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ describe('ThreadJobService heavy tasks', () => {
console.log('ends with multi thread');
performance.mark('end');
const totalWithMultiThread: number = performance.measure('totalMultiThread', 'start', 'end').duration;
expect(totalWithMultiThread * (numberOfJobs - 1)).to.be.below(totalWithSingleThread);
expect(totalWithMultiThread * (numberOfJobs - 2)).to.be.below(totalWithSingleThread);
}).timeout(200000);

afterEach(async () => {
Expand Down

0 comments on commit bf49939

Please sign in to comment.