[ruby/spec] Removed space between method name and argument list paren
This commit is contained in:
parent
7860277527
commit
d0f41aa238
@ -18,7 +18,7 @@ describe "BigDecimal#<=>" do
|
||||
def coerce(other)
|
||||
return [other, BigDecimal('123')]
|
||||
end
|
||||
def >= (other)
|
||||
def >=(other)
|
||||
BigDecimal('123') >= other
|
||||
end
|
||||
end
|
||||
|
@ -17,7 +17,7 @@ describe "BigDecimal#>" do
|
||||
def coerce(other)
|
||||
return [other, BigDecimal('123')]
|
||||
end
|
||||
def > (other)
|
||||
def >(other)
|
||||
BigDecimal('123') > other
|
||||
end
|
||||
end
|
||||
|
@ -17,7 +17,7 @@ describe "BigDecimal#>=" do
|
||||
def coerce(other)
|
||||
return [other, BigDecimal('123')]
|
||||
end
|
||||
def >= (other)
|
||||
def >=(other)
|
||||
BigDecimal('123') >= other
|
||||
end
|
||||
end
|
||||
|
@ -17,7 +17,7 @@ describe "BigDecimal#<" do
|
||||
def coerce(other)
|
||||
return [other, BigDecimal('123')]
|
||||
end
|
||||
def < (other)
|
||||
def <(other)
|
||||
BigDecimal('123') < other
|
||||
end
|
||||
end
|
||||
|
@ -17,7 +17,7 @@ describe "BigDecimal#<=" do
|
||||
def coerce(other)
|
||||
return [other, BigDecimal('123')]
|
||||
end
|
||||
def <= (other)
|
||||
def <=(other)
|
||||
BigDecimal('123') <= other
|
||||
end
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user