
Allows running tests which require labels on the content store Signed-off-by: Derek McGowan <derek@mcgstyle.net>
15 lines
176 B
Go
15 lines
176 B
Go
package local
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
)
|
|
|
|
func getStartTime(fi os.FileInfo) time.Time {
|
|
return fi.ModTime()
|
|
}
|
|
|
|
func getATime(fi os.FileInfo) time.Time {
|
|
return fi.ModTime()
|
|
}
|