aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/html/parse_test.go
diff options
context:
space:
mode:
authorNigel Tao <nigeltao@golang.org>2010-12-10 12:20:14 +1100
committerNigel Tao <nigeltao@golang.org>2010-12-10 12:20:14 +1100
commit71bd053ada2ec6ac5c8d37855e772ca7ec7fba04 (patch)
treec626129ce23c796bcc0efa012192cc22cf8444bc /src/pkg/html/parse_test.go
parent8959851a96bcf0ccf60df0869872ab7f848abf06 (diff)
downloadgo-71bd053ada2ec6ac5c8d37855e772ca7ec7fba04.tar.xz
html: parse <table><tr><td> tags.
Also, shorten fooInsertionMode to fooIM. R=gri CC=golang-dev https://golang.org/cl/3504042
Diffstat (limited to 'src/pkg/html/parse_test.go')
-rw-r--r--src/pkg/html/parse_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/html/parse_test.go b/src/pkg/html/parse_test.go
index 839a034b7d..dbfc57f666 100644
--- a/src/pkg/html/parse_test.go
+++ b/src/pkg/html/parse_test.go
@@ -124,7 +124,7 @@ func TestParser(t *testing.T) {
rc := make(chan io.Reader)
go readDat(filename, rc)
// TODO(nigeltao): Process all test cases, not just a subset.
- for i := 0; i < 19; i++ {
+ for i := 0; i < 21; i++ {
// Parse the #data section.
doc, err := Parse(<-rc)
if err != nil {