Skip to content

Commit

Permalink
Fix test failure message
Browse files Browse the repository at this point in the history
The error message we reported if the test failed was incorrect.
  • Loading branch information
mattjmcnaughton committed Jun 1, 2018
1 parent d4205ea commit e8b788d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/releasetesting/test_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func TestRun(t *testing.T) {
}

if result2.Status != release.TestRun_FAILURE {
t.Errorf("Expected test result to be successful, got: %v", result2.Status)
t.Errorf("Expected test result to be failure, got: %v", result2.Status)
}

}
Expand Down

0 comments on commit e8b788d

Please sign in to comment.