1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/spec] Removed space between method name and argument list paren

This commit is contained in:
Nobuyoshi Nakada 2020-04-26 12:26:42 +09:00
parent 7860277527
commit d0f41aa238
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6
5 changed files with 5 additions and 5 deletions

View file

@ -18,7 +18,7 @@ describe "BigDecimal#<=>" do
def coerce(other)
return [other, BigDecimal('123')]
end
def >= (other)
def >=(other)
BigDecimal('123') >= other
end
end

View file

@ -17,7 +17,7 @@ describe "BigDecimal#>" do
def coerce(other)
return [other, BigDecimal('123')]
end
def > (other)
def >(other)
BigDecimal('123') > other
end
end

View file

@ -17,7 +17,7 @@ describe "BigDecimal#>=" do
def coerce(other)
return [other, BigDecimal('123')]
end
def >= (other)
def >=(other)
BigDecimal('123') >= other
end
end

View file

@ -17,7 +17,7 @@ describe "BigDecimal#<" do
def coerce(other)
return [other, BigDecimal('123')]
end
def < (other)
def <(other)
BigDecimal('123') < other
end
end

View file

@ -17,7 +17,7 @@ describe "BigDecimal#<=" do
def coerce(other)
return [other, BigDecimal('123')]
end
def <= (other)
def <=(other)
BigDecimal('123') <= other
end
end