integration/fixtures: Move the 'tests/integration/fixtures' directory up and update references.

I moved the files up as they are shared between e2e & integrational tests.
This commit is contained in:
Piotr Tabor
2020-10-07 15:38:28 +02:00
parent bb9703820c
commit be4e8b7013
76 changed files with 86 additions and 79 deletions

View File

@@ -38,9 +38,9 @@ import (
var testLogger = zap.NewExample()
var testTLSInfo = transport.TLSInfo{
KeyFile: "./fixtures/server.key.insecure",
CertFile: "./fixtures/server.crt",
TrustedCAFile: "./fixtures/ca.crt",
KeyFile: "../../tests/fixtures/server.key.insecure",
CertFile: "../../tests/fixtures/server.crt",
TrustedCAFile: "../../tests/fixtures/ca.crt",
ClientCertAuth: true,
}