diff --git a/conformance/results/ty/callables_kwargs.toml b/conformance/results/ty/callables_kwargs.toml index 610256cb..636f9556 100644 --- a/conformance/results/ty/callables_kwargs.toml +++ b/conformance/results/ty/callables_kwargs.toml @@ -2,7 +2,6 @@ conformance_automated = "Fail" conformant = "Unsupported" errors_diff = """ Line 46: Expected 1 errors -Line 51: Expected 1 errors Line 58: Expected 1 errors Line 63: Expected 1 errors Line 65: Expected 1 errors diff --git a/conformance/tests/callables_kwargs.py b/conformance/tests/callables_kwargs.py index c52319fc..a4c431db 100644 --- a/conformance/tests/callables_kwargs.py +++ b/conformance/tests/callables_kwargs.py @@ -48,7 +48,7 @@ def func3() -> None: td2 = TD2(v1=2, v3="4") func1(**td2) # OK - func1(v1=1, v2="", v3="5", v4=5) # E: v4 is not in TD2 + func1(v1=1, v2="", v3="5", v4=5) # E?: v4 is not in TD2, but could be in a subtype func1(1, "", "5") # E: args not passed by position # > Passing a dictionary of type dict[str, object] as a **kwargs argument