Skip to content

Commit

Permalink
pangram: Errorf -> Fatalf in TestTestVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Phoenix committed Feb 3, 2017
1 parent e032417 commit 47f46ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/pangram/pangram_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var testCases = []testCase{

func TestTestVersion(t *testing.T) {
if testVersion != targetTestVersion {
t.Errorf("Found testVersion = %v, want %v.", testVersion, targetTestVersion)
t.Fatalf("Found testVersion = %v, want %v.", testVersion, targetTestVersion)
}
}

Expand Down

0 comments on commit 47f46ee

Please sign in to comment.