From 4f67c11112970c0294f550d0988293df557b149d Mon Sep 17 00:00:00 2001 From: Steven Degutis Date: Sat, 10 Mar 2012 13:01:58 -0600 Subject: [PATCH] __ belongs in the package not in the test, technically --- basics.go | 2 ++ setup_koans_test.go | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/basics.go b/basics.go index eebdd37..1ab89f6 100644 --- a/basics.go +++ b/basics.go @@ -1,5 +1,7 @@ package go_koans +var __ interface{} + func testBasics() { assert(__ == true) // what is truth? } diff --git a/setup_koans_test.go b/setup_koans_test.go index a708f3b..8224459 100644 --- a/setup_koans_test.go +++ b/setup_koans_test.go @@ -10,8 +10,6 @@ import ( "strings" ) -var __ interface{} - func TestKoans(t *testing.T) { testBasics() fmt.Printf("%c[32m", 27)