summaryrefslogtreecommitdiffstats
path: root/api4
diff options
context:
space:
mode:
Diffstat (limited to 'api4')
-rw-r--r--api4/job_test.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/api4/job_test.go b/api4/job_test.go
index e2b261d44..685cab4d1 100644
--- a/api4/job_test.go
+++ b/api4/job_test.go
@@ -75,21 +75,22 @@ func TestGetJobs(t *testing.T) {
jobType := model.NewId()
+ t0 := model.GetMillis()
jobs := []*model.Job{
{
Id: model.NewId(),
Type: jobType,
- CreateAt: model.GetMillis() + 1,
+ CreateAt: t0 + 1,
},
{
Id: model.NewId(),
Type: jobType,
- CreateAt: model.GetMillis(),
+ CreateAt: t0,
},
{
Id: model.NewId(),
Type: jobType,
- CreateAt: model.GetMillis() + 2,
+ CreateAt: t0 + 2,
},
}