fix import ordering for mock classes

This commit is contained in:
Johannes Batzill 2022-08-18 15:22:53 -07:00
parent 813d343f6a
commit baec2451ad
2 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,8 @@ package mocks
import (
reflect "reflect"
types "github.com/harness/scm/types"
gomock "github.com/golang/mock/gomock"
types "github.com/harness/scm/types"
)
// MockClient is a mock of Client interface.

View File

@ -8,8 +8,8 @@ import (
context "context"
reflect "reflect"
types "github.com/harness/scm/types"
gomock "github.com/golang/mock/gomock"
types "github.com/harness/scm/types"
)
// MockExecutionStore is a mock of ExecutionStore interface.