mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
rename utils.Max to utils.MaxInt
This commit is contained in:
parent
ea9de26ed5
commit
2ea21b7b16
3 changed files with 5 additions and 5 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue