From 6b0935d6cf3d22b673c68bea56604604b5a9cfbe Mon Sep 17 00:00:00 2001 From: Stephen Prater Date: Sun, 25 Aug 2019 13:47:29 -0700 Subject: [PATCH] Fix tests --- internal/status/timestamp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/status/timestamp.go b/internal/status/timestamp.go index 6fa89c4a..3801c1ac 100644 --- a/internal/status/timestamp.go +++ b/internal/status/timestamp.go @@ -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 }