textutil: Re-enable textutil test now that we're on go1.6

Change-Id: I95b6ecb01164e074ff5b3da5ec184e79fe9dd5c9
diff --git a/textutil/utf8_test.go b/textutil/utf8_test.go
index 264334d..64d6281 100644
--- a/textutil/utf8_test.go
+++ b/textutil/utf8_test.go
@@ -35,10 +35,7 @@
 		{"\uFFFD", []rune{'\uFFFD'}, nil},
 		{"a\uFFFDb", []rune{'a', '\uFFFD', 'b'}, nil},
 		{"\x80", []rune{'\uFFFD'}, nil},
-		// TODO(toddw): Enable the below line when we've switched to go1.6+.  It
-		// fails in go1.5 because of a bugfix that changed this behavior.
-		// https://go-review.googlesource.com/#/c/16940/4/src/unicode/utf8/utf8.go@a142
-		// {"\xFF", []rune{'\uFFFD'}, nil},
+		{"\xFF", []rune{'\uFFFD'}, nil},
 		{"a\x80b", []rune{'a', '\uFFFD', 'b'}, nil},
 		{"a\xFFb", []rune{'a', '\uFFFD', 'b'}, nil},
 		// Multi-byte full runes.