returns constant repo hash name for test

This commit is contained in:
HiteshRepo 2024-01-30 17:30:10 +05:30
parent 1a584fb95a
commit cb3c7da53b

View File

@ -5,5 +5,6 @@ import "github.com/google/uuid"
const hashLength = 7 const hashLength = 7
func NewHashForRepoConfigName() string { func NewHashForRepoConfigName() string {
return uuid.NewString()[:hashLength] _ = uuid.NewString()[:hashLength]
return "constant"
} }