Minor doc string update

pull/76/head
Victor 2014-08-28 13:05:46 -07:00
parent 5461242ffd
commit 0f9ba46361
1 changed files with 2 additions and 2 deletions

View File

@ -242,11 +242,11 @@ func TestNotContains(t *testing.T) {
func TestCondition(t *testing.T) {
mockT := new(testing.T)
if !Condition(mockT, func() bool { return true }, "True condition") {
if !Condition(mockT, func() bool { return true }, "Truth") {
t.Error("Condition should return true")
}
if Condition(mockT, func() bool { return false }, "True condition") {
if Condition(mockT, func() bool { return false }, "Lie") {
t.Error("Condition should return false")
}