diff options
author | Peter Mundy <go.peter.90@gmail.com> | 2010-07-17 16:52:53 -0700 |
---|---|---|
committer | Peter Mundy <go.peter.90@gmail.com> | 2010-07-17 16:52:53 -0700 |
commit | 1a82f51605605449c53fb5ea3e7f7b93ffc40d1b (patch) | |
tree | 230cd6a58e5d04ccf36601960b3d868b1d6d0f28 | |
parent | 427f4263f90b49c77d1530237fe284ebc85b8721 (diff) | |
download | go-1a82f51605605449c53fb5ea3e7f7b93ffc40d1b.tar.gz |
utf16: fix cyclic dependency when testing on Windows
(on Windows, syscall depends on utf16)
R=rsc
CC=golang-dev
http://codereview.appspot.com/1664053
Committer: Russ Cox <rsc@golang.org>
-rw-r--r-- | src/pkg/utf16/utf16_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pkg/utf16/utf16_test.go b/src/pkg/utf16/utf16_test.go index c0848aa38..87e38126e 100644 --- a/src/pkg/utf16/utf16_test.go +++ b/src/pkg/utf16/utf16_test.go @@ -2,13 +2,14 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package utf16 +package utf16_test import ( "fmt" "reflect" "testing" "unicode" + . "utf16" ) type encodeTest struct { |