Refactor package imports

This commit is contained in:
Ettore Di Giacinto 2019-06-05 19:13:09 +02:00
parent d842198537
commit 0bb72e67fd
No known key found for this signature in database
GPG Key ID: F557248F4D256736
3 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@
package solver
import (
pkg "gitlab.com/mudler/luet/pkg/package"
pkg "github.com/mudler/luet/pkg/package"
)
type PackageAssert struct {

View File

@ -19,7 +19,7 @@ import (
"errors"
"github.com/crillab/gophersat/bf"
pkg "gitlab.com/mudler/luet/pkg/package"
pkg "github.com/mudler/luet/pkg/package"
)
type State interface{ Encode() string }

View File

@ -16,11 +16,11 @@
package solver_test
import (
pkg "github.com/mudler/luet/pkg/package"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
pkg "gitlab.com/mudler/luet/pkg/package"
. "gitlab.com/mudler/luet/pkg/solver"
. "github.com/mudler/luet/pkg/solver"
)
var _ = Describe("Solver", func() {