Skip to content

Commit 81cbf0a

Browse files
committed
Fix package rename conflicts
1 parent 984868e commit 81cbf0a

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

dialects/mysql/mysql.go

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

7-
"github.com/aacanakin/qb"
87
"github.com/go-sql-driver/mysql"
8+
"github.com/slicebit/qb"
99
)
1010

1111
//go:generate go run ./tools/generrors.go

dialects/mysql/mysql_test.go

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

10-
"github.com/aacanakin/qb"
1110
"github.com/go-sql-driver/mysql"
11+
"github.com/slicebit/qb"
1212
"github.com/stretchr/testify/assert"
1313
"github.com/stretchr/testify/suite"
1414
)

dialects/postgres/postgres.go

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

7-
"github.com/aacanakin/qb"
87
"github.com/lib/pq"
8+
"github.com/slicebit/qb"
99
)
1010

1111
// Dialect is a type of dialect that can be used with postgres driver

dialects/postgres/postgres_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"testing"
99
"time"
1010

11-
"github.com/aacanakin/qb"
1211
"github.com/lib/pq"
12+
"github.com/slicebit/qb"
1313
"github.com/stretchr/testify/assert"
1414
"github.com/stretchr/testify/suite"
1515
)

dialects/sqlite/sqlite.go

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

7-
"github.com/aacanakin/qb"
87
"github.com/mattn/go-sqlite3"
8+
"github.com/slicebit/qb"
99
)
1010

1111
// Dialect is a type of dialect that can be used with sqlite driver

dialects/sqlite/sqlite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"testing"
77
"time"
88

9-
"github.com/aacanakin/qb"
109
"github.com/mattn/go-sqlite3"
10+
"github.com/slicebit/qb"
1111
"github.com/stretchr/testify/assert"
1212
"github.com/stretchr/testify/suite"
1313
)

engine_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package qb_test
33
import (
44
"testing"
55

6-
"github.com/aacanakin/qb"
7-
_ "github.com/aacanakin/qb/dialects/sqlite"
86
_ "github.com/mattn/go-sqlite3"
7+
"github.com/slicebit/qb"
8+
_ "github.com/slicebit/qb/dialects/sqlite"
99
"github.com/stretchr/testify/assert"
1010
)
1111

0 commit comments

Comments
 (0)