Skip to content

Commit

Permalink
Fix incorrect expected result
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulHatch committed Aug 9, 2023
1 parent ce15f9a commit 976ff82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ test('Patch pattern applied when present', async () => {
expect(firstResult.formattedVersion).toBe('0.0.1+0');
expect(secondResult.formattedVersion).toBe('0.0.1+1');
expect(thirdResult.formattedVersion).toBe('0.0.2+0');
expect(fourthResult.formattedVersion).toBe('0.0.2+3');
expect(fourthResult.formattedVersion).toBe('0.0.2+1');

}, timeout);

Expand Down

0 comments on commit 976ff82

Please sign in to comment.