From 0f447218f269f6233c5cd8872a282b0db887fa16 Mon Sep 17 00:00:00 2001 From: Alex Mendes da Costa Date: Sun, 1 Feb 2015 23:49:17 -0800 Subject: [PATCH] Reset text color after printing congratulatory message. --- setup_koans_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup_koans_test.go b/setup_koans_test.go index d0c133f..025a3f6 100644 --- a/setup_koans_test.go +++ b/setup_koans_test.go @@ -44,7 +44,7 @@ func TestKoans(t *testing.T) { aboutConcurrency() aboutPanics() - fmt.Printf("\n%c[32;1mYou won life. Good job.\n\n", 27) + fmt.Printf("\n%c[32;1mYou won life. Good job.%c[0m\n\n", 27, 27) } func assert(o bool) {