Skip to content

Commit

Permalink
Loosening test around lgged lines that change in versions of maven
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-murray committed Jan 23, 2024
1 parent e5df479 commit bc9f3a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/maven-runner.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ describe('maven-runner', () => {

const results = await runner.exec(projectDir, ['validate']);
expect(results.exitCode).toBe(0);
expect(results.stdout.length).toBe(7851);
expect(results.stdout.length).toBeGreaterThan(7000);
});
});

Expand Down

0 comments on commit bc9f3a7

Please sign in to comment.