text/template: update failed case report for TestIsTrue

This commit is contained in:
pgxiaolianzi 2024-12-13 20:13:46 +08:00 committed by lixiaolian
parent a52a197fa1
commit ae9fee34c5
1 changed files with 1 additions and 1 deletions

View File

@ -1537,7 +1537,7 @@ func TestIsTrue(t *testing.T) {
for _, test_case := range tests {
got, _ := IsTrue(test_case.v)
if got != test_case.want {
t.Fatalf("expect result %v for %v, got %v", test_case.want, test_case.v, got)
t.Fatalf("expect result %v, got %v", test_case.want, got)
}
}
}