Modify the time sorter tests to make golint happy.
This commit changes the internal testing mechanism from returning the unexported timeSorter type directly to insted returning sort.Interface. This has been done because the latest version of golint complains about return unexported types.
This commit is contained in:
parent
208d4d79d7
commit
e1c622c4cf
1 changed files with 2 additions and 1 deletions
|
@ -12,6 +12,7 @@ interface. The functions are only exported while the tests are being run.
|
|||
package btcchain
|
||||
|
||||
import (
|
||||
"sort"
|
||||
"time"
|
||||
|
||||
"github.com/conformal/btcutil"
|
||||
|
@ -25,7 +26,7 @@ func TstSetCoinbaseMaturity(maturity int64) {
|
|||
|
||||
// TstTimeSorter makes the internal timeSorter type available to the test
|
||||
// package.
|
||||
func TstTimeSorter(times []time.Time) timeSorter {
|
||||
func TstTimeSorter(times []time.Time) sort.Interface {
|
||||
return timeSorter(times)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue