diff options
author | Rob Pike <r@golang.org> | 2009-08-31 13:01:25 -0700 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2009-08-31 13:01:25 -0700 |
commit | e44fe9529859922b4c68899da458777534e3806b (patch) | |
tree | 578f2cfc35f2d3d0e404f95090f554a8cfd31620 /src/pkg/unicode/script_test.go | |
parent | 2094185f13a033d36bb6245da640b919c5bebaf1 (diff) | |
download | golang-e44fe9529859922b4c68899da458777534e3806b.tar.gz |
rearrange some constants. unicode package now defines MaxRune and ReplacementChar.
utf8 package imports unicode to get those definitions.
regenerate dependencies.
R=rsc
DELTA=41 (19 added, 3 deleted, 19 changed)
OCL=34123
CL=34129
Diffstat (limited to 'src/pkg/unicode/script_test.go')
-rw-r--r-- | src/pkg/unicode/script_test.go | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/pkg/unicode/script_test.go b/src/pkg/unicode/script_test.go index 390e47b36..da525c541 100644 --- a/src/pkg/unicode/script_test.go +++ b/src/pkg/unicode/script_test.go @@ -2,9 +2,12 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package unicode +package unicode_test -import "testing" +import ( + "testing"; + . "unicode"; +) type T struct { rune int; |