Repository: lucy-clownfish Updated Branches: refs/heads/master f7bc3e82e -> 570984e73
Use correct test package. Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/73b2e09f Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/73b2e09f Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/73b2e09f Branch: refs/heads/master Commit: 73b2e09f4053aba42c561e2d08ea84ea2dc242ef Parents: f7bc3e8 Author: Marvin Humphrey <[email protected]> Authored: Tue Jul 21 15:22:28 2015 -0700 Committer: Marvin Humphrey <[email protected]> Committed: Thu Jul 30 10:41:46 2015 -0700 ---------------------------------------------------------------------- runtime/go/clownfish/clownfish_test.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/73b2e09f/runtime/go/clownfish/clownfish_test.go ---------------------------------------------------------------------- diff --git a/runtime/go/clownfish/clownfish_test.go b/runtime/go/clownfish/clownfish_test.go index 016e4a0..6103f24 100644 --- a/runtime/go/clownfish/clownfish_test.go +++ b/runtime/go/clownfish/clownfish_test.go @@ -14,15 +14,14 @@ * limitations under the License. */ -package clownfish_test +package clownfish -import "git-wip-us.apache.org/repos/asf/lucy-clownfish.git/runtime/go/clownfish" import "testing" import "unsafe" func TestStuff(t *testing.T) { - cfString := clownfish.NewString("foo") - goString := clownfish.CFStringToGo(unsafe.Pointer(cfString.TOPTR())) + cfString := NewString("foo") + goString := CFStringToGo(unsafe.Pointer(cfString.TOPTR())) if goString != "foo" { t.Error("Round-tripping strings failed") }
