trustelem / zxcvbn

Go implementation of Dropbox's zxcvbn realistic password strength estimator
MIT License
67 stars 13 forks source link

Wrong testify dependency used #15

Closed rustyx closed 2 years ago

rustyx commented 2 years ago

This module uses github.com/test-go/testify which is an obsolete fork of github.com/stretchr/testify.

Consequently pulling this module in go.mod transitively pulls that obsolete dependency, which messes with auto-completion (risk of accidentally selecting the wrong package for assert and require).

require (
    github.com/test-go/testify v1.1.4 // indirect
    github.com/trustelem/zxcvbn v1.0.1
)

Thus hereby a request to use the correct dependency for testify.

vanackere commented 2 years ago

Merged, thanks !