diff --git a/routes_test.go b/routes_test.go index 4db2aa84..ec50b9d0 100644 --- a/routes_test.go +++ b/routes_test.go @@ -10,7 +10,7 @@ import ( "net/http" "net/http/httptest" "os" - "path" + "path/filepath" "testing" "github.com/stretchr/testify/assert" @@ -161,7 +161,7 @@ func TestRouteStaticFile(t *testing.T) { f.WriteString("Gin Web Framework") f.Close() - dir, filename := path.Split(f.Name()) + dir, filename := filepath.Split(f.Name()) // SETUP gin router := New()