This commit is contained in:
Eric Chiang
2016-08-10 22:31:42 -07:00
parent 1cbb7700d8
commit bfe560ee21
30 changed files with 52 additions and 52 deletions

View File

@@ -22,8 +22,8 @@ import (
"golang.org/x/net/context"
yaml "gopkg.in/yaml.v2"
"github.com/coreos/poke/storage"
"github.com/coreos/poke/storage/kubernetes/k8sapi"
"github.com/coreos/dex/storage"
"github.com/coreos/dex/storage/kubernetes/k8sapi"
)
type client struct {

View File

@@ -4,7 +4,7 @@ import (
"testing"
"time"
"github.com/coreos/poke/storage"
"github.com/coreos/dex/storage"
)
func muster(t *testing.T) func(err error) {

View File

@@ -10,8 +10,8 @@ import (
homedir "github.com/mitchellh/go-homedir"
"golang.org/x/net/context"
"github.com/coreos/poke/storage"
"github.com/coreos/poke/storage/kubernetes/k8sapi"
"github.com/coreos/dex/storage"
"github.com/coreos/dex/storage/kubernetes/k8sapi"
)
const (

View File

@@ -4,7 +4,7 @@ import (
"os"
"testing"
"github.com/coreos/poke/storage/storagetest"
"github.com/coreos/dex/storage/storagetest"
)
func TestLoadClient(t *testing.T) {

View File

@@ -5,8 +5,8 @@ import (
jose "gopkg.in/square/go-jose.v2"
"github.com/coreos/poke/storage"
"github.com/coreos/poke/storage/kubernetes/k8sapi"
"github.com/coreos/dex/storage"
"github.com/coreos/dex/storage/kubernetes/k8sapi"
)
// There will only ever be a single keys resource. Maintain this by setting a

View File

@@ -5,7 +5,7 @@ import (
"errors"
"sync"
"github.com/coreos/poke/storage"
"github.com/coreos/dex/storage"
)
// New returns an in memory storage.

View File

@@ -3,7 +3,7 @@ package memory
import (
"testing"
"github.com/coreos/poke/storage/storagetest"
"github.com/coreos/dex/storage/storagetest"
)
func TestStorage(t *testing.T) {

View File

@@ -4,7 +4,7 @@ import (
"reflect"
"testing"
"github.com/coreos/poke/storage"
"github.com/coreos/dex/storage"
)
func TestStaticClients(t *testing.T) {

View File

@@ -8,7 +8,7 @@ import (
"testing"
"time"
"github.com/coreos/poke/storage"
"github.com/coreos/dex/storage"
)
var neverExpire = time.Now().Add(time.Hour * 24 * 365 * 100)