Skip to content

Commit

Permalink
trinary-test: Ensure test versioning consistency with other exercises (
Browse files Browse the repository at this point in the history
…#595)

* Errorf -> Fatalf

See #470
  • Loading branch information
tleen authored Mar 16, 2017
1 parent d5ed657 commit f276845
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/trinary/trinary_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var tests = []struct {

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 f276845

Please sign in to comment.