From 7a97b709b3cdf83a80da53e2cf75f97390e21e87 Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Fri, 22 Nov 2024 13:59:41 +0800 Subject: [PATCH] refactor: optimized imports --- core/task/handler/runner_test.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/task/handler/runner_test.go b/core/task/handler/runner_test.go index 1c613fe3..f38825f3 100644 --- a/core/task/handler/runner_test.go +++ b/core/task/handler/runner_test.go @@ -10,12 +10,11 @@ import ( "time" "github.com/apex/log" - "github.com/crawlab-team/crawlab/core/utils" - "github.com/crawlab-team/crawlab/grpc" - "github.com/crawlab-team/crawlab/core/constants" "github.com/crawlab-team/crawlab/core/models/models" "github.com/crawlab-team/crawlab/core/models/service" + "github.com/crawlab-team/crawlab/core/utils" + "github.com/crawlab-team/crawlab/grpc" "github.com/spf13/viper" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require"