Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test_typed_dict_typing_extension fails with typing_extensions==4.1.1 #84

Closed
mweinelt opened this issue Mar 6, 2022 · 3 comments
Closed

Comments

@mweinelt
Copy link

mweinelt commented Mar 6, 2022

After updating typing_extensions from 4.0.1 to 4.1.1 the following test started failing.

_____________ GetUtilityTestCase.test_typed_dict_typing_extension ______________

self = <test_typing_inspect.GetUtilityTestCase testMethod=test_typed_dict_typing_extension>

    @skipUnless(PY36, "Python 3.6 required")
    def test_typed_dict_typing_extension(self):
        TDOld = TETypedDict("TDOld", {'x': int, 'y': int})
>       self.assertEqual(typed_dict_keys(TDE), {'x': int, 'y': int})
E       AssertionError: None != {'x': <class 'int'>, 'y': <class 'int'>}

test_typing_inspect.py:451: AssertionError
@ilevkivskyi
Copy link
Owner

Thanks for reporting, and sorry for delay! I will try to look into this.

@anntzer
Copy link
Contributor

anntzer commented Jun 21, 2022

I guess this is fixed by #86?

@ilevkivskyi
Copy link
Owner

Yes, this ca be closed now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants