diff --git a/core/services/job/models.go b/core/services/job/models.go index 9ef36e78059..d4308e41787 100644 --- a/core/services/job/models.go +++ b/core/services/job/models.go @@ -13,9 +13,10 @@ import ( "github.com/google/uuid" "github.com/lib/pq" "github.com/pkg/errors" - "github.com/smartcontractkit/chainlink-common/pkg/workflows/sdk" "gopkg.in/guregu/null.v4" + "github.com/smartcontractkit/chainlink-common/pkg/workflows/sdk" + commonassets "github.com/smartcontractkit/chainlink-common/pkg/assets" "github.com/smartcontractkit/chainlink-common/pkg/types" pkgworkflows "github.com/smartcontractkit/chainlink-common/pkg/workflows" diff --git a/core/services/job/workflow_spec_factory_test.go b/core/services/job/workflow_spec_factory_test.go index 9ee4c476c62..dc2ff3bac9b 100644 --- a/core/services/job/workflow_spec_factory_test.go +++ b/core/services/job/workflow_spec_factory_test.go @@ -7,10 +7,11 @@ import ( "fmt" "testing" - "github.com/smartcontractkit/chainlink-common/pkg/workflows/sdk" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + "github.com/smartcontractkit/chainlink-common/pkg/workflows/sdk" + "github.com/smartcontractkit/chainlink/v2/core/internal/testutils" "github.com/smartcontractkit/chainlink/v2/core/services/job" )