Skip to content
Snippets Groups Projects
Unverified Commit 5d8242f1 authored by Claudiu Popa's avatar Claudiu Popa
Browse files

For some reason this test wasn't running until now

parent 27890cf9
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -198,9 +198,6 @@ def namedtuple_replace_issue_1036():
b=24,
c=42
)
# +1: [unexpected-keyword-arg, unexpected_keyword-arg]
new_bad_instance = cls(1, 2, 3)._replace(
d=24,
e=32,
)
# +1:[unexpected-keyword-arg,unexpected-keyword-arg]
new_bad_instance = cls(1, 2, 3)._replace(d=24, e=32)
return new_instance, new_bad_instance
Loading
Loading
@@ -32,5 +32,5 @@ no-value-for-parameter:163:no_context_but_redefined:No value for argument 'three
no-value-for-parameter:163:no_context_but_redefined:No value for argument 'two' in function call
no-value-for-parameter:166:no_context_one_elem:No value for argument 'three' in function call
no-value-for-parameter:166:no_context_one_elem:No value for argument 'two' in function call
unexpected-keyword-arg:203:namedtuple_replace_issue_1036:Unexpected keyword argument 'd' in function call
unexpected-keyword-arg:204:namedtuple_replace_issue_1036:Unexpected keyword argument 'e' in function call
\ No newline at end of file
unexpected-keyword-arg:202:namedtuple_replace_issue_1036:Unexpected keyword argument 'd' in method call
unexpected-keyword-arg:202:namedtuple_replace_issue_1036:Unexpected keyword argument 'e' in method call
\ No newline at end of file
Loading
Loading
@@ -11,7 +11,7 @@ commands = pylint -rn --rcfile={toxinidir}/pylintrc --load-plugins=pylint.extens
 
[testenv]
deps =
astroid>=1.5.1
astroid>=1.6.0
coverage
isort
mccabe
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment