Skip to content

Commit 293d5ba

Browse files
committed
bugfix-324-wrong-tag-names: Update version format in createRelease tests to include 'v' prefix for consistency
1 parent 1cf42df commit 293d5ba

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/data/repository/__tests__/project_repository.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ describe("ProjectRepository.createRelease", () => {
429429
const result = await repo.createRelease(
430430
"owner",
431431
"repo",
432-
"1.0",
432+
"v1.0",
433433
"First release",
434434
"Changelog",
435435
"token"

src/usecase/actions/__tests__/create_release_use_case.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ describe('CreateReleaseUseCase', () => {
7676
expect(mockCreateRelease).toHaveBeenCalledWith(
7777
'owner',
7878
'repo',
79-
'1.0.0',
79+
'v1.0.0',
8080
'Release title',
8181
'- Fix bug',
8282
'token'

0 commit comments

Comments
 (0)