Remove unused expectedRV in store_test TestGet

expectedRV is defined in tests struct  but not set in test cases, removing the unnecessary checking

Kubernetes-commit: f8f36c672776bb00b2d53c5d49e92b1bfb608516
This commit is contained in:
Wenjia 2021-01-21 11:27:57 -08:00 committed by Kubernetes Publisher
parent 864a7c9c18
commit 15c145e78b
1 changed files with 0 additions and 6 deletions

View File

@ -226,7 +226,6 @@ func TestGet(t *testing.T) {
expectRVTooLarge bool expectRVTooLarge bool
expectedOut *example.Pod expectedOut *example.Pod
rv string rv string
expectedRV string
}{{ // test get on existing item }{{ // test get on existing item
name: "get existing", name: "get existing",
key: key, key: key,
@ -287,11 +286,6 @@ func TestGet(t *testing.T) {
} }
return return
} }
if tt.expectedRV != "" {
if tt.expectedRV != out.ResourceVersion {
t.Errorf("expecting resource version want=%s, got=%s", tt.expectedRV, out.ResourceVersion)
}
}
if err != nil { if err != nil {
t.Fatalf("Get failed: %v", err) t.Fatalf("Get failed: %v", err)
} }