Skip to content

Commit

Permalink
Fix output on test failure (kubeflow#511)
Browse files Browse the repository at this point in the history
  • Loading branch information
jose5918 authored and k8s-ci-robot committed Mar 30, 2018
1 parent 9b99987 commit 6d83583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/trainer/replicas_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func TestTFReplicaSet(t *testing.T) {
p := l.Items[index]

if !reflect.DeepEqual(expectedLabels, p.ObjectMeta.Labels) {
t.Fatalf("Pod Labels; Got %v Want: %v", expectedLabels, p.ObjectMeta.Labels)
t.Fatalf("Pod Labels; Got %v Want: %v", p.ObjectMeta.Labels, expectedLabels)
}

if len(p.Spec.Containers) != 1 {
Expand Down

0 comments on commit 6d83583

Please sign in to comment.