Skip to content

Commit

Permalink
chore: simplify more error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Sep 26, 2024
1 parent 21ada6f commit b45c656
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/devtools/internal/release/release_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ func TestRun(t *testing.T) {

// assert the tags for the library and all the modules exist
output, err = gitClient.ListTags()
require.NoError(tt, err, "Error listing git tags: %v", err)
require.Contains(tt, output, vNextDevelopmentVersion, "Expected core version tag not found: %s", output)
require.NoError(tt, err)
require.Contains(tt, output, vNextDevelopmentVersion)

for _, module := range modules {
moduleTag := fmt.Sprintf("%s/%s/%s", "modules", module, vNextDevelopmentVersion)
Expand Down

0 comments on commit b45c656

Please sign in to comment.