summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dataclasses.py
diff options
context:
space:
mode:
authorpenguindustin <penguindustin@gmail.com>2019-05-06 18:57:17 (GMT)
committerStéphane Wirtel <stephane@wirtel.be>2019-05-06 18:57:17 (GMT)
commit964663089547ca110199e23867b46b07ff4be88c (patch)
tree7936a6abc5e5c20058b4f51dbd8379eb4658e42d /Lib/test/test_dataclasses.py
parent3921b1cc34c2fc8b8b480c19a95ec306de710fdd (diff)
downloadcpython-964663089547ca110199e23867b46b07ff4be88c.zip
cpython-964663089547ca110199e23867b46b07ff4be88c.tar.gz
cpython-964663089547ca110199e23867b46b07ff4be88c.tar.bz2
bpo-36766: Typos in docs and code comments (GH-13116)
Diffstat (limited to 'Lib/test/test_dataclasses.py')
-rwxr-xr-xLib/test/test_dataclasses.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_dataclasses.py b/Lib/test/test_dataclasses.py
index d320a96..8672106 100755
--- a/Lib/test/test_dataclasses.py
+++ b/Lib/test/test_dataclasses.py
@@ -1458,7 +1458,7 @@ class TestCase(unittest.TestCase):
}
)
- # Make sure that the returned dicts are actuall OrderedDicts.
+ # Make sure that the returned dicts are actually OrderedDicts.
self.assertIs(type(d), OrderedDict)
self.assertIs(type(d['y'][1]), OrderedDict)