summaryrefslogtreecommitdiffstats
path: root/api4/job_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/job_test.go')
-rw-r--r--api4/job_test.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/api4/job_test.go b/api4/job_test.go
index 9ccde42dc..e2b261d44 100644
--- a/api4/job_test.go
+++ b/api4/job_test.go
@@ -13,7 +13,7 @@ import (
func TestCreateJob(t *testing.T) {
th := Setup().InitBasic().InitSystemAdmin()
- defer TearDown()
+ defer th.TearDown()
job := &model.Job{
Type: model.JOB_TYPE_DATA_RETENTION,
@@ -40,7 +40,7 @@ func TestCreateJob(t *testing.T) {
func TestGetJob(t *testing.T) {
th := Setup().InitBasic().InitSystemAdmin()
- defer TearDown()
+ defer th.TearDown()
job := &model.Job{
Id: model.NewId(),
@@ -71,7 +71,7 @@ func TestGetJob(t *testing.T) {
func TestGetJobs(t *testing.T) {
th := Setup().InitBasic().InitSystemAdmin()
- defer TearDown()
+ defer th.TearDown()
jobType := model.NewId()
@@ -122,7 +122,7 @@ func TestGetJobs(t *testing.T) {
func TestGetJobsByType(t *testing.T) {
th := Setup().InitBasic().InitSystemAdmin()
- defer TearDown()
+ defer th.TearDown()
jobType := model.NewId()
@@ -186,7 +186,7 @@ func TestGetJobsByType(t *testing.T) {
func TestCancelJob(t *testing.T) {
th := Setup().InitBasic().InitSystemAdmin()
- defer TearDown()
+ defer th.TearDown()
jobs := []*model.Job{
{