Skip to content

Commit

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

* Errorf -> Fatalf

See #470
  • Loading branch information
tleen authored Mar 10, 2017
1 parent e7eafbe commit 7b2855d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/queen-attack/queen_attack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,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 7b2855d

Please sign in to comment.