mirror of
https://github.com/Mezeporta/Erupe.git
synced 2026-03-24 16:43:37 +01:00
fix(lint): fixing more complex formatters problems.
This commit is contained in:
@@ -693,7 +693,7 @@ func BenchmarkSlicesContains(b *testing.B) {
|
||||
|
||||
b.ResetTimer()
|
||||
for i := 0; i < b.N; i++ {
|
||||
slices.Contains(courses, target)
|
||||
_ = slices.Contains(courses, target)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -708,6 +708,6 @@ func BenchmarkSlicesIndexFunc(b *testing.B) {
|
||||
|
||||
b.ResetTimer()
|
||||
for i := 0; i < b.N; i++ {
|
||||
slices.IndexFunc(courses, predicate)
|
||||
_ = slices.IndexFunc(courses, predicate)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user