replace Fatalf to Errorf

This commit is contained in:
mqliang 2015-10-17 19:44:32 +08:00
parent f3e0bb0d41
commit 1ce85d8ffd

View File

@ -142,9 +142,11 @@ func TestStoreToReplicationControllerLister(t *testing.T) {
if err != nil && c.expectErr {
continue
} else if c.expectErr {
t.Fatalf("Expected error, got none")
t.Error("Expected error, got none")
continue
} else if err != nil {
t.Fatalf("Unexpected error %#v", err)
t.Errorf("Unexpected error %#v", err)
continue
}
gotNames := make([]string, len(gotControllers))
for ix := range gotControllers {
@ -264,9 +266,11 @@ func TestStoreToDaemonSetLister(t *testing.T) {
if err != nil && c.expectErr {
continue
} else if c.expectErr {
t.Fatalf("Expected error, got none")
t.Error("Expected error, got none")
continue
} else if err != nil {
t.Fatalf("Unexpected error %#v", err)
t.Errorf("Unexpected error %#v", err)
continue
}
daemonSetNames := make([]string, len(daemonSets))
for ix := range daemonSets {
@ -320,7 +324,7 @@ func TestStoreToPodLister(t *testing.T) {
t.Errorf("unexpected error: %v", err)
}
if exists {
t.Errorf("Unexpected pod exists")
t.Error("Unexpected pod exists")
}
}