Fix static analysis' argument tests.

This commit is contained in:
Dave Halter
2014-12-13 07:33:03 +01:00
parent a4c454c103
commit 1b48f6fbce
2 changed files with 22 additions and 9 deletions

View File

@@ -34,7 +34,7 @@ def two_params(x, y):
two_params(y=2, x=1)
two_params(1, y=2)
#! 10 type-error-multiple-values
#! 11 type-error-multiple-values
two_params(1, x=2)
#! 17 type-error-too-many-arguments
two_params(1, 2, y=3)