This commit is contained in:
Aaron Lindsay 2017-04-10 06:05:03 -04:00
parent 3099c5f00f
commit 2bbd1d424d
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ func TestStatusCodeMeaning(t *testing.T) {
s.Code = 999
if meaning, err := s.CodeMeaning(); len(meaning) != 0 || err == nil {
t.Fatalf("Status.CodeMeaning unexpectedly succeeded with invalid Code\n", err)
t.Fatalf("Status.CodeMeaning unexpectedly succeeded with invalid Code\n")
}
}
@ -61,6 +61,6 @@ func TestStatusCodeConditions(t *testing.T) {
s.Code = 999
if conditions, err := s.CodeConditions(); len(conditions) != 0 || err == nil {
t.Fatalf("Status.CodeConditions unexpectedly succeeded with invalid Code\n", err)
t.Fatalf("Status.CodeConditions unexpectedly succeeded with invalid Code\n")
}
}