Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9a38e8a + 654d44b commit fc880c8Copy full SHA for fc880c8
1 file changed
Lib/test/test_dataclasses.py
@@ -3671,7 +3671,7 @@ def test_text_annotations(self):
3671
ByMakeDataClass = make_dataclass('ByMakeDataClass', [('x', int)])
3672
ManualModuleMakeDataClass = make_dataclass('ManualModuleMakeDataClass',
3673
[('x', int)],
3674
- module='test.test_dataclasses')
+ module=__name__)
3675
WrongNameMakeDataclass = make_dataclass('Wrong', [('x', int)])
3676
WrongModuleMakeDataclass = make_dataclass('WrongModuleMakeDataclass',
3677
0 commit comments