Testcase fix for R

Workaround bug in R when a method with default arguments end in 'get'
This commit is contained in:
William S Fulton 2016-05-07 19:30:13 +01:00
commit 63e2f636de
2 changed files with 3 additions and 3 deletions

View file

@ -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)