Commit a094a6e3 authored by k8s-merge-robot's avatar k8s-merge-robot

Merge pull request #15815 from mqliang/lister_test

Auto commit by PR queue bot
parents bffdd242 1ce85d8f
...@@ -142,9 +142,11 @@ func TestStoreToReplicationControllerLister(t *testing.T) { ...@@ -142,9 +142,11 @@ func TestStoreToReplicationControllerLister(t *testing.T) {
if err != nil && c.expectErr { if err != nil && c.expectErr {
continue continue
} else if c.expectErr { } else if c.expectErr {
t.Fatalf("Expected error, got none") t.Error("Expected error, got none")
continue
} else if err != nil { } else if err != nil {
t.Fatalf("Unexpected error %#v", err) t.Errorf("Unexpected error %#v", err)
continue
} }
gotNames := make([]string, len(gotControllers)) gotNames := make([]string, len(gotControllers))
for ix := range gotControllers { for ix := range gotControllers {
...@@ -264,9 +266,11 @@ func TestStoreToDaemonSetLister(t *testing.T) { ...@@ -264,9 +266,11 @@ func TestStoreToDaemonSetLister(t *testing.T) {
if err != nil && c.expectErr { if err != nil && c.expectErr {
continue continue
} else if c.expectErr { } else if c.expectErr {
t.Fatalf("Expected error, got none") t.Error("Expected error, got none")
continue
} else if err != nil { } else if err != nil {
t.Fatalf("Unexpected error %#v", err) t.Errorf("Unexpected error %#v", err)
continue
} }
daemonSetNames := make([]string, len(daemonSets)) daemonSetNames := make([]string, len(daemonSets))
for ix := range daemonSets { for ix := range daemonSets {
...@@ -491,7 +495,7 @@ func TestStoreToPodLister(t *testing.T) { ...@@ -491,7 +495,7 @@ func TestStoreToPodLister(t *testing.T) {
t.Errorf("unexpected error: %v", err) t.Errorf("unexpected error: %v", err)
} }
if exists { if exists {
t.Errorf("Unexpected pod exists") t.Error("Unexpected pod exists")
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment