storage: rename "storagetest" package to "conformance"

This commit is contained in:
Eric Chiang
2016-10-03 12:48:25 -07:00
committed by Eric Chiang
parent 87a7d093b2
commit e2bf8ceb63
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -3,10 +3,10 @@ package memory
import (
"testing"
"github.com/coreos/dex/storage/storagetest"
"github.com/coreos/dex/storage/conformance"
)
func TestStorage(t *testing.T) {
s := New()
storagetest.RunTestSuite(t, s)
conformance.RunTestSuite(t, s)
}