Remove unused imports

This commit is contained in:
Filip Figiel 2018-08-18 21:02:23 +02:00
parent df00f2484a
commit ac48b84d1b
2 changed files with 0 additions and 15 deletions

View File

@ -7,21 +7,10 @@
package gin package gin
import ( import (
"bytes"
"errors"
"fmt"
"html/template"
"mime/multipart"
"net/http"
"net/http/httptest" "net/http/httptest"
"reflect"
"strings"
"testing" "testing"
"time"
"github.com/gin-contrib/sse"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"golang.org/x/net/context"
) )
// Tests that the response is serialized as JSON // Tests that the response is serialized as JSON

View File

@ -7,14 +7,10 @@
package render package render
import ( import (
"bytes"
"encoding/xml"
"html/template"
"net/http/httptest" "net/http/httptest"
"testing" "testing"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"github.com/ugorji/go/codec"
) )
func TestRenderPureJSON(t *testing.T) { func TestRenderPureJSON(t *testing.T) {