Skip to content

Commit 0894344

Browse files
committed
use gopkg.in/Masterminds/squirrel.v1 instead of github.com/Masterminds/squirrel
Signed-off-by: Florent AIDE <[email protected]>
1 parent c1d6c20 commit 0894344

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

batcher.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"errors"
66
"fmt"
77

8-
"github.com/Masterminds/squirrel"
8+
"gopkg.in/Masterminds/squirrel.v1"
99
)
1010

1111
type batchQueryRunner struct {

batcher_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"fmt"
55
"testing"
66

7-
"github.com/Masterminds/squirrel"
87
"github.com/stretchr/testify/require"
8+
"gopkg.in/Masterminds/squirrel.v1"
99
)
1010

1111
func TestOneToManyWithFilterNotWritable(t *testing.T) {

operators.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"gopkg.in/src-d/go-kallax.v1/types"
1010

11-
"github.com/Masterminds/squirrel"
11+
"gopkg.in/Masterminds/squirrel.v1"
1212
)
1313

1414
// ScalarCond returns a kallax.Condition that compares a property with the passed

query.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"errors"
55
"fmt"
66

7-
"github.com/Masterminds/squirrel"
7+
"gopkg.in/Masterminds/squirrel.v1"
88
)
99

1010
var (

store.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"fmt"
88
"log"
99

10-
"github.com/Masterminds/squirrel"
1110
"github.com/lann/builder"
11+
"gopkg.in/Masterminds/squirrel.v1"
1212
)
1313

1414
var (

0 commit comments

Comments
 (0)