Home | History | Annotate | Download | only in template

Lines Matching refs:got

38 	got := htmlNospaceEscaper(input)
39 if got != want {
40 t.Errorf("encode: want\n\t%q\nbut got\n\t%q", want, got)
44 got, want = html.UnescapeString(got), r.Replace(input)
45 if want != got {
46 t.Errorf("decode: want\n\t%q\nbut got\n\t%q", want, got)
69 if got := stripTags(test.input); got != test.want {
70 t.Errorf("%q: want %q, got %q", test.input, test.want, got)