We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c92c8eb commit bd02289Copy full SHA for bd02289
coderd/crontab/crontab_test.go
@@ -4,7 +4,7 @@ import (
4
"testing"
5
"time"
6
7
- "github.com/coder/coder/coderd/cron"
+ "github.com/coder/coder/coderd/crontab"
8
"github.com/stretchr/testify/require"
9
)
10
@@ -51,7 +51,7 @@ func Test_Parse(t *testing.T) {
51
testCase := testCase
52
t.Run(testCase.name, func(t *testing.T) {
53
t.Parallel()
54
- actual, err := cron.Parse(testCase.spec)
+ actual, err := crontab.Parse(testCase.spec)
55
if testCase.expectedError == "" {
56
nextTime := actual.Next(testCase.at)
57
require.NoError(t, err)
0 commit comments