1
0
forked from VimPlug/jedi

call signature test change to avoid version changes of python 3.2.5 (int docstrings have changed, travis has updated since)

This commit is contained in:
Dave Halter
2014-05-03 20:12:39 +02:00
parent c44b88adc3
commit 065e9a001d

View File

@@ -179,7 +179,10 @@ class TestParams(TestCase):
p = self.params('''int(''')
# int is defined as: `int(x[, base])`
assert p[0].name == 'x'
assert p[1].name == 'base'
# `int` docstring has been redefined:
# http://bugs.python.org/issue14783
# TODO have multiple call signatures for int (like in the docstr)
#assert p[1].name == 'base'
p = self.params('''open(something,''')
assert p[0].name in ['file', 'name']