diff options
Diffstat (limited to 'src/pkg/unicode/decimaldigit_test.go')
-rw-r--r-- | src/pkg/unicode/decimaldigit_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/unicode/decimaldigit_test.go b/src/pkg/unicode/decimaldigit_test.go index f7b470c67..393846e2e 100644 --- a/src/pkg/unicode/decimaldigit_test.go +++ b/src/pkg/unicode/decimaldigit_test.go @@ -362,12 +362,12 @@ var testLetter = []int{ } func TestIsDecimalDigit(t *testing.T) { - for i, r := range(testDecimal) { + for i, r := range testDecimal { if !IsDecimalDigit(r) { t.Errorf("IsDecimalDigit(%#x) = false, want true\n", r); } } - for i, r := range(testLetter) { + for i, r := range testLetter { if IsDecimalDigit(r) { t.Errorf("IsDecimalDigit(%#x) = true, want false\n", r); } |