↓ 6 callersFunctionGreaterGreater asserts that the first element is greater than the second assert.Greater(t, 2, 1) assert.Greater(t, float64(2), float64(1)) assert.Greater(t,
internal/testify/assert/assertion_order.go:202
↓ 6 callersFunctionLessLess asserts that the first element is less than the second assert.Less(t, 1, 2) assert.Less(t, float64(1), float64(2)) assert.Less(t, "a", "b")
internal/testify/assert/assertion_order.go:259