Skip to content

Commit

Permalink
Update solution_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
doublederek authored May 8, 2024
1 parent fe1d8c6 commit abb0bb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/solution_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit abb0bb2

Please sign in to comment.