use context everywhere instead of golang.org version

This commit is contained in:
Matthew Jaffee 2017-08-30 10:36:28 -05:00
parent 6e4148688e
commit 3d6dbcfc7b
No known key found for this signature in database
GPG key ID: 51C676AF9FFCDB87
3 changed files with 3 additions and 3 deletions

View file

@ -16,13 +16,13 @@ package ctl
import (
"bytes"
"context"
"net/http"
"strings"
"testing"
"github.com/pilosa/pilosa"
"github.com/pilosa/pilosa/test"
"golang.org/x/net/context"
)
func TestExportCommand_Validation(t *testing.T) {

View file

@ -16,6 +16,7 @@ package ctl
import (
"bytes"
"context"
"io"
"io/ioutil"
"net/http"
@ -24,7 +25,6 @@ import (
"github.com/pilosa/pilosa"
"github.com/pilosa/pilosa/test"
"golang.org/x/net/context"
)
func TestImportCommand_Validation(t *testing.T) {

View file

@ -17,13 +17,13 @@ package ctl
import (
"bufio"
"bytes"
"context"
"io"
"io/ioutil"
"testing"
"github.com/pilosa/pilosa"
"github.com/pilosa/pilosa/test"
"golang.org/x/net/context"
)
func TestRestoreCommand_FileRequired(t *testing.T) {