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:
parent
7860277527
commit
d0f41aa238
5 changed files with 5 additions and 5 deletions
|
@ -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…
Add table
Reference in a new issue