Ready to upgrade the dependencies.

This commit is contained in:
lishuang
2020-07-11 15:28:12 +08:00
parent dbeef1cee4
commit 24e8dc4e9f
4 changed files with 4 additions and 6 deletions

View File

@ -8,7 +8,7 @@ import (
func TestValidateCron(t *testing.T) {
spec := "*/1 * * * * ?"
_, err := cron.Parse(spec)
_, err := cron.ParseStandard(spec)
if err != nil {
t.Error(err)
} else {