aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/html/parse_test.go
diff options
context:
space:
mode:
authorAndrew Balholm <andybalholm@gmail.com>2011-11-04 09:29:06 +1100
committerNigel Tao <nigeltao@golang.org>2011-11-04 09:29:06 +1100
commit46308d7d1191b75dc86f848dbc362616f5b0b0cb (patch)
tree389c0b6c2478ab0602c768b7c61fafa55c965cd0 /src/pkg/html/parse_test.go
parenta7f1141dee05bf889b64401c787f08e1c8643e88 (diff)
downloadgo-46308d7d1191b75dc86f848dbc362616f5b0b0cb.tar.xz
html: move <link> element from after <head> into <head>
Pass tests1.dat, test 85: <head><meta></head><link> | <html> | <head> | <meta> | <link> | <body> R=nigeltao CC=golang-dev https://golang.org/cl/5297079
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 3194a3fa47..8dc00ba484 100644
--- a/src/pkg/html/parse_test.go
+++ b/src/pkg/html/parse_test.go
@@ -133,7 +133,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 < 85; i++ {
+ for i := 0; i < 86; i++ {
// Parse the #data section.
b, err := ioutil.ReadAll(<-rc)
if err != nil {