Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/heapsampling.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ func checkAllocations(records []runtime.MemProfileRecord, leafFrame string, fram
// consistently far from the expected value.
func checkValue(fname string, ln int, testName string, want int64, got []int64) error {
if got == nil {
return fmt.Errorf("Unexpected empty result")
return fmt.Errorf("unexpected empty result")
}
min, max := got[0], got[0]
for _, g := range got[1:] {
Expand Down