1
0
mirror of https://github.com/go-task/task.git synced 2025-01-12 04:34:11 +02:00

Fix tests

This commit is contained in:
Stephen Prater 2019-08-25 13:47:29 -07:00
parent d1183ce272
commit 6b0935d6cf

View File

@ -47,7 +47,7 @@ func (t *Timestamp) Kind() string {
// Value implements the Checker Interface
func (t *Timestamp) Value() (interface{}, error) {
sources, err := glob(t.Dir, t.Sources)
sources, err := globs(t.Dir, t.Sources)
if err != nil {
return time.Now(), err
}