utils: switch to standard library min and max functions (#4218)

These functions were added in Go 1.21.
This commit is contained in:
Marten Seemann 2023-12-28 12:19:13 +07:00 committed by GitHub
parent 18c591c75a
commit 22411e16d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 44 additions and 78 deletions

View file

@ -8,16 +8,6 @@ import (
)
var _ = Describe("Min / Max", func() {
It("returns the maximum", func() {
Expect(Max(5, 7)).To(Equal(7))
Expect(Max(5.5, 5.7)).To(Equal(5.7))
})
It("returns the minimum", func() {
Expect(Min(5, 7)).To(Equal(5))
Expect(Min(5.5, 5.7)).To(Equal(5.5))
})
It("returns the maximum time", func() {
a := time.Now()
b := a.Add(time.Second)