server: Update imports.

find -name '*.go' | xargs sed -i --follow-symlinks 's|etcd/v3/|etcd/server/v3/|g'
This commit is contained in:
Piotr Tabor
2020-10-20 23:09:35 +02:00
parent 6c1efd6ba5
commit aaf423e962
186 changed files with 393 additions and 494 deletions

View File

@@ -23,11 +23,11 @@ import (
)
const (
jwtRSAPubKey = "../tests/fixtures/server.crt"
jwtRSAPrivKey = "../tests/fixtures/server.key.insecure"
jwtRSAPubKey = "../../tests/fixtures/server.crt"
jwtRSAPrivKey = "../../tests/fixtures/server.key.insecure"
jwtECPubKey = "../tests/fixtures/server-ecdsa.crt"
jwtECPrivKey = "../tests/fixtures/server-ecdsa.key.insecure"
jwtECPubKey = "../../tests/fixtures/server-ecdsa.crt"
jwtECPrivKey = "../../tests/fixtures/server-ecdsa.key.insecure"
)
func TestJWTInfo(t *testing.T) {