Fix dataclassses spelling (GH-28837)

This commit is contained in:
Landon Yarrington 2021-10-09 13:17:52 -06:00 committed by GitHub
parent dbd62e74da
commit 5b4a7675bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -1907,7 +1907,7 @@ class Parent(Generic[T]):
# Check MRO resolution.
self.assertEqual(Child.__mro__, (Child, Parent, Generic, object))
def test_dataclassses_pickleable(self):
def test_dataclasses_pickleable(self):
global P, Q, R
@dataclass
class P: