Testcase fix for R
Workaround bug in R when a method with default arguments end in 'get'
This commit is contained in:
parent
15ebf3df03
commit
63e2f636de
2 changed files with 3 additions and 3 deletions
|
|
@ -6,8 +6,8 @@ def check(flag):
|
|||
|
||||
rs = ResultSet()
|
||||
|
||||
check(rs.go_get(0, SearchPoint()) == -1)
|
||||
check(rs.go_get(0, SearchPoint(), 100) == 100)
|
||||
check(rs.go_get_method(0, SearchPoint()) == -1)
|
||||
check(rs.go_get_method(0, SearchPoint(), 100) == 100)
|
||||
|
||||
check(rs.go_get_template(0, SearchPoint()) == -2)
|
||||
check(rs.go_get_template(0, SearchPoint(), 100) == 100)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue