From 0f9ba463614fa94d1683ba0ef709a3b9c59ec17b Mon Sep 17 00:00:00 2001 From: Victor Date: Thu, 28 Aug 2014 13:05:46 -0700 Subject: [PATCH] Minor doc string update --- assert/assertions_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assert/assertions_test.go b/assert/assertions_test.go index b8b3c4b..dc59b91 100644 --- a/assert/assertions_test.go +++ b/assert/assertions_test.go @@ -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") }