From bc2ee6b8c641010a576aa991c84120e0b991f2c3 Mon Sep 17 00:00:00 2001 From: Peter Mundy Date: Sat, 17 Jul 2010 16:52:53 -0700 Subject: [PATCH] utf16: fix cyclic dependency when testing on Windows (on Windows, syscall depends on utf16) R=rsc CC=golang-dev https://golang.org/cl/1664053 --- src/pkg/utf16/utf16_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pkg/utf16/utf16_test.go b/src/pkg/utf16/utf16_test.go index c0848aa387..87e38126e9 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 { -- 2.50.0