Skip to content

Commit f0fbfc2

Browse files
committed
Fix import collision error in test file
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`
1 parent b21ddaa commit f0fbfc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp_compliance_test.go

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

9-
"github.com/bytearena/box2d"
9+
"github.com/ByteArena/box2d"
1010
"github.com/pmezard/go-difflib/difflib"
1111
)
1212

0 commit comments

Comments
 (0)