diff --git a/go/solution_test.go b/go/solution_test.go index cade6cd..bba11aa 100644 --- a/go/solution_test.go +++ b/go/solution_test.go @@ -16,7 +16,7 @@ func TestSolutionOutput(t *testing.T) { // Trim space from output and expected value output := strings.TrimSpace(string(outputBytes)) - expected := strings.TrimSpace(os.Getenv("TEST_ANSWER")) + expected := strings.TrimSpace("HIPPOPOTOMONSTROSESQUIPPEDALIOPHOBIA") if output != expected { t.Errorf("Unexpected output, got: %q, want: %q", output, expected)