Skip to content

Commit

Permalink
Fix import collision error in test file
Browse files Browse the repository at this point in the history
It's happen when run fetch library with `go get` subcommand

```
$ go test -v ./...
cpp_compliance_test.go:9:2: case-insensitive import collision: "github.com/bytearena/box2d" and "github.com/ByteArena/box2d"
FAIL	github.com/ByteArena/box2d [setup failed]
```

because github username use `ByteArena` not `bytearena`
  • Loading branch information
wingyplus committed Oct 20, 2017
1 parent b21ddaa commit f0fbfc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp_compliance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sort"
"testing"

"github.com/bytearena/box2d"
"github.com/ByteArena/box2d"
"github.com/pmezard/go-difflib/difflib"
)

Expand Down

0 comments on commit f0fbfc2

Please sign in to comment.