@@ -22,7 +22,7 @@ func (s *ProcessorSuite) TestInlineStruct() {
2222 fixtureSrc := `
2323 package fixture
2424
25- import "github.com /src-d/go-kallax"
25+ import "gopkg.in /src-d/go-kallax.v1 "
2626
2727 type Foo struct {}
2828
@@ -42,7 +42,7 @@ func (s *ProcessorSuite) TestTags() {
4242 fixtureSrc := `
4343 package fixture
4444
45- import "github.com /src-d/go-kallax"
45+ import "gopkg.in /src-d/go-kallax.v1 "
4646
4747 type Foo struct {
4848 kallax.Model
@@ -59,7 +59,7 @@ func (s *ProcessorSuite) TestRecursiveModel() {
5959 fixtureSrc := `
6060 package fixture
6161
62- import "github.com /src-d/go-kallax"
62+ import "gopkg.in /src-d/go-kallax.v1 "
6363
6464 type Recur struct {
6565 kallax.Model
@@ -80,7 +80,7 @@ func (s *ProcessorSuite) TestDeepRecursiveStruct() {
8080 fixtureSrc := `
8181 package fixture
8282
83- import "github.com /src-d/go-kallax"
83+ import "gopkg.in /src-d/go-kallax.v1 "
8484
8585 type Recur struct {
8686 kallax.Model
@@ -109,7 +109,7 @@ func (s *ProcessorSuite) TestIsEventPresent() {
109109 fixtureSrc := `
110110 package fixture
111111
112- import "github.com /src-d/go-kallax"
112+ import "gopkg.in /src-d/go-kallax.v1 "
113113
114114 type Foo struct {
115115 kallax.Model
@@ -148,7 +148,7 @@ func (s *ProcessorSuite) TestProcessField() {
148148 fixtureSrc := `
149149 package fixture
150150
151- import "github.com /src-d/go-kallax"
151+ import "gopkg.in /src-d/go-kallax.v1 "
152152 import "database/sql/driver"
153153
154154 type BasicAlias string
@@ -246,7 +246,7 @@ func (s *ProcessorSuite) TestCtor() {
246246 fixtureSrc := `
247247 package fixture
248248
249- import "github.com /src-d/go-kallax"
249+ import "gopkg.in /src-d/go-kallax.v1 "
250250
251251 type Foo struct {
252252 kallax.Model
@@ -269,7 +269,7 @@ func (s *ProcessorSuite) TestSQLTypeIsInterface() {
269269 fixtureSrc := `
270270 package fixture
271271
272- import "github.com /src-d/go-kallax"
272+ import "gopkg.in /src-d/go-kallax.v1 "
273273 import "database/sql/driver"
274274
275275 type Foo struct {
@@ -298,7 +298,7 @@ func (s *ProcessorSuite) TestIsSQLType() {
298298 fixtureSrc := `
299299 package fixture
300300
301- import "github.com /src-d/go-kallax"
301+ import "gopkg.in /src-d/go-kallax.v1 "
302302
303303 type SQLTypeFixture struct {
304304 kallax.Model
@@ -340,7 +340,7 @@ func (s *ProcessorSuite) processFixture(source string) *Package {
340340}
341341
342342func (s * ProcessorSuite ) TestDo () {
343- p := NewProcessor (filepath .Join (goPath , "src" , "github.com /src-d/go-kallax" ), []string {"README.md" })
343+ p := NewProcessor (filepath .Join (goPath , "src" , "gopkg.in /src-d/go-kallax.v1 " ), []string {"README.md" })
344344 pkg , err := p .Do ()
345345 s .NotNil (pkg )
346346 s .NoError (err )
@@ -350,7 +350,7 @@ func (s *ProcessorSuite) TestIsModel() {
350350 src := `
351351 package fixture
352352
353- import "github.com /src-d/go-kallax"
353+ import "gopkg.in /src-d/go-kallax.v1 "
354354
355355 type Bar struct {
356356 kallax.Model
@@ -392,7 +392,7 @@ func (s *ProcessorSuite) TestIsEmbedded() {
392392 src := `
393393 package fixture
394394
395- import "github.com /src-d/go-kallax"
395+ import "gopkg.in /src-d/go-kallax.v1 "
396396
397397 type Bar struct {
398398 kallax.Model
0 commit comments