Skip to content

Commit

Permalink
test: fix github tests
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 authored May 27, 2021
1 parent be642f1 commit 35d4026
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/github.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ describe('github', () => {
expect(release).not.toBeNull();
expect(release?.tag_name).toEqual('v0.166.0-pro');
});
it('returns v0.166.0-pro GoReleaser Pro GitHub release when using semver', async () => {
it('returns v0.166.1-pro GoReleaser Pro GitHub release when using semver', async () => {
const release = await github.getRelease('goreleaser-pro', '~> 0.166');
expect(release).not.toBeNull();
expect(release?.tag_name).toEqual('v0.166.0-pro');
expect(release?.tag_name).toEqual('v0.166.1-pro');
});
});

0 comments on commit 35d4026

Please sign in to comment.