rename utils.Max to utils.MaxInt

This commit is contained in:
Marten Seemann 2022-07-25 15:41:48 -04:00
parent ea9de26ed5
commit 2ea21b7b16
3 changed files with 5 additions and 5 deletions

View file

@ -11,8 +11,8 @@ import (
var _ = Describe("Min / Max", func() {
Context("Max", func() {
It("returns the maximum", func() {
Expect(Max(5, 7)).To(Equal(7))
Expect(Max(7, 5)).To(Equal(7))
Expect(MaxInt(5, 7)).To(Equal(7))
Expect(MaxInt(7, 5)).To(Equal(7))
})
It("returns the maximum uint32", func() {