Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

Commit

Permalink
Update stacktrace_test.go Errorf formatting
Browse files Browse the repository at this point in the history
To resolve no formatting directive in Errorf call.
  • Loading branch information
NexWeb authored and mattrobenolt committed Nov 17, 2017
1 parent 6843cd4 commit c9de0b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stacktrace_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func TestNewStacktrace_outOfBounds(t *testing.T) {
func TestNewStacktrace_noFrames(t *testing.T) {
st := NewStacktrace(999999999, 0, []string{})
if st != nil {
t.Errorf("expected st.Frames to be nil:", st)
t.Errorf("expected st.Frames to be nil: %v", st)
}
}

Expand Down

0 comments on commit c9de0b9

Please sign in to comment.