diff --git a/tests/common/kv_test.go b/tests/common/kv_test.go index 2b69d7ba5..68f3205b3 100644 --- a/tests/common/kv_test.go +++ b/tests/common/kv_test.go @@ -36,11 +36,11 @@ func TestKVPut(t *testing.T) { }, { name: "PeerTLS", - config: config.ClusterConfig{ClusterSize: 1, PeerTLS: config.ManualTLS}, + config: config.ClusterConfig{ClusterSize: 3, PeerTLS: config.ManualTLS}, }, { name: "PeerAutoTLS", - config: config.ClusterConfig{ClusterSize: 1, PeerTLS: config.AutoTLS}, + config: config.ClusterConfig{ClusterSize: 3, PeerTLS: config.AutoTLS}, }, { name: "ClientTLS", @@ -93,11 +93,11 @@ func TestKVGet(t *testing.T) { }, { name: "PeerTLS", - config: config.ClusterConfig{ClusterSize: 1, PeerTLS: config.ManualTLS}, + config: config.ClusterConfig{ClusterSize: 3, PeerTLS: config.ManualTLS}, }, { name: "PeerAutoTLS", - config: config.ClusterConfig{ClusterSize: 1, PeerTLS: config.AutoTLS}, + config: config.ClusterConfig{ClusterSize: 3, PeerTLS: config.AutoTLS}, }, { name: "ClientTLS", diff --git a/tests/e2e/ctl_v3_kv_test.go b/tests/e2e/ctl_v3_kv_test.go index 4c902cae7..ae83ee127 100644 --- a/tests/e2e/ctl_v3_kv_test.go +++ b/tests/e2e/ctl_v3_kv_test.go @@ -30,7 +30,6 @@ func TestCtlV3PutIgnoreValue(t *testing.T) { testCtl(t, putTestIgnoreValue) } func TestCtlV3PutIgnoreLease(t *testing.T) { testCtl(t, putTestIgnoreLease) } func TestCtlV3GetTimeout(t *testing.T) { testCtl(t, getTest, withDialTimeout(0)) } -func TestCtlV3GetQuorum(t *testing.T) { testCtl(t, getTest, withQuorum()) } func TestCtlV3GetFormat(t *testing.T) { testCtl(t, getFormatTest) } func TestCtlV3GetRev(t *testing.T) { testCtl(t, getRevTest) }