Skip to content

Commit

Permalink
Fixed a bad use of formatting directives in a non-formatting method.
Browse files Browse the repository at this point in the history
  • Loading branch information
ojarjur committed Jan 22, 2016
1 parent 7dd2de1 commit c5cfd10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion review/review_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -662,6 +662,6 @@ func TestGetRequests(t *testing.T) {
t.Fatal(err)
}
if len(pendingReview.AllRequests) != 3 || pendingReview.Request.Description != "Final description of G" {
t.Fatal("Unexpected requests for a pending review: %v %v", pendingReview.AllRequests, pendingReview.Request)
t.Fatal("Unexpected requests for a pending review: ", pendingReview.AllRequests, pendingReview.Request)
}
}

0 comments on commit c5cfd10

Please sign in to comment.