Skip to content

Commit

Permalink
Merge pull request #5 from ZondaX/fix/case-mismatch
Browse files Browse the repository at this point in the history
avoid case mismatches in vendor deps
  • Loading branch information
jleni authored Jan 29, 2019
2 parents 6c752df + 72e492b commit 918a8a7
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[[constraint]]
name = "github.com/ZondaX/hid"
name = "github.com/zondax/hid"
version = "0.9.0"

[[constraint]]
Expand All @@ -14,5 +14,5 @@
go-tests = true
unused-packages = true
[[prune.project]]
name = "github.com/ZondaX/hid"
name = "github.com/zondax/hid"
unused-packages = false
2 changes: 1 addition & 1 deletion ledger.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package ledger_go
import (
"errors"
"fmt"
"github.com/ZondaX/hid"
"github.com/zondax/hid"
"sync"
)

Expand Down
2 changes: 1 addition & 1 deletion ledger_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ package ledger_go
import (
"encoding/hex"
"fmt"
"github.com/ZondaX/hid"
"github.com/zondax/hid"
"github.com/stretchr/testify/assert"
"testing"
)
Expand Down

0 comments on commit 918a8a7

Please sign in to comment.