From 921e7525c074750a47818fdf89a4fe5c0b058f0f Mon Sep 17 00:00:00 2001 From: Steve Kuznetsov Date: Wed, 16 Feb 2022 13:13:03 -0800 Subject: [PATCH] storage: etcd: remove a duplicate test case This test case was a duplicate of the previous one. Signed-off-by: Steve Kuznetsov --- .../apiserver/pkg/storage/etcd3/store_test.go | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go b/staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go index e22228534dc..4affc333d14 100644 --- a/staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go +++ b/staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go @@ -1356,20 +1356,6 @@ func TestList(t *testing.T) { rvMatch: metav1.ResourceVersionMatchExact, expectRV: "1", }, - { - name: "test List with limit at old resource version and match=Exact", - prefix: "/two-level/", - pred: storage.SelectionPredicate{ - Label: labels.Everything(), - Field: fields.Everything(), - Limit: 1, - }, - expectedOut: []*example.Pod{}, - expectContinue: false, - rv: "1", - rvMatch: metav1.ResourceVersionMatchExact, - expectRV: "1", - }, { name: "test List with limit when paging disabled", disablePaging: true,