From f0fbfc22484b21092a2323ce91af5a6b7b313ee0 Mon Sep 17 00:00:00 2001 From: Thanabodee Charoenpiriyakij Date: Fri, 20 Oct 2017 15:10:48 +0700 Subject: [PATCH] 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` --- cpp_compliance_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp_compliance_test.go b/cpp_compliance_test.go index af0f9bd..8bf80ea 100644 --- a/cpp_compliance_test.go +++ b/cpp_compliance_test.go @@ -6,7 +6,7 @@ import ( "sort" "testing" - "github.com/bytearena/box2d" + "github.com/ByteArena/box2d" "github.com/pmezard/go-difflib/difflib" )