From f997fde749b233ee96247b7b4147544e465298bf Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Mon, 31 Aug 2009 16:48:56 -0700 Subject: submitter's regret. rename Props to Properties R=rsc DELTA=9 (0 added, 0 deleted, 9 changed) OCL=34148 CL=34151 --- src/pkg/unicode/script_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/pkg/unicode/script_test.go') diff --git a/src/pkg/unicode/script_test.go b/src/pkg/unicode/script_test.go index 6c7934ec8..613b569ea 100644 --- a/src/pkg/unicode/script_test.go +++ b/src/pkg/unicode/script_test.go @@ -212,16 +212,16 @@ func TestCategories(t *testing.T) { } } -func TestProps(t *testing.T) { +func TestProperties(t *testing.T) { notTested := make(map[string] bool); - for k := range Props { + for k := range Properties { notTested[k] = true } for i, test := range inPropTest { - if _, ok := Props[test.script]; !ok { + if _, ok := Properties[test.script]; !ok { t.Fatal(test.script, "not a known prop") } - if !Is(Props[test.script], test.rune) { + if !Is(Properties[test.script], test.rune) { t.Errorf("IsCategory(%#x, %s) = false, want true\n", test.rune, test.script); } notTested[test.script] = false, false -- cgit v1.2.3