Skip to content

Commit

Permalink
internal/civisibility: return a better error
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyredondo committed Oct 14, 2024
1 parent 4f1910f commit fcb98ac
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions internal/civisibility/utils/git_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
package utils

import (
"fmt"
"testing"

"github.com/stretchr/testify/assert"
Expand Down Expand Up @@ -80,5 +81,6 @@ func TestHasTheGitLogHaveMoreThanTwoCommits(t *testing.T) {

func TestUnshallowGitRepository(t *testing.T) {
_, err := UnshallowGitRepository()
fmt.Println(err)
assert.NoError(t, err)
}

0 comments on commit fcb98ac

Please sign in to comment.