Fix breaking test

This commit is contained in:
mcc 2020-05-03 13:00:22 -04:00
parent 61affeb669
commit 3490d04ac1

View File

@ -173,7 +173,7 @@ end
-- @tparam precision Digits after the decimal (round number if unspecified)
-- @treturn vec3 Rounded bound
function bound2.round(a, precision)
return bound2.new(a.min:round(precision), a.max.round(precision))
return bound2.new(a.min:round(precision), a.max:round(precision))
end
--- Return a formatted string.