Skip to content

Commit 5bc207a

Browse files
Apply suggestions from code review
Co-authored-by: Benedikt Johannes <benedikt.johannes.hofer@gmail.com>
1 parent 3653eeb commit 5bc207a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/mapping_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def _empty_mapping(self):
2020
"""Return an empty mapping object"""
2121
return self.type2test()
2222
def _full_mapping(self, data):
23-
"""Return a mapping object with the value contained in data
23+
"""Return a mapping object with the values contained in data
2424
dictionary"""
2525
return self.type2test(data)
2626

@@ -144,7 +144,7 @@ def test_get(self):
144144

145145
class BasicTestMappingProtocol(BasicTestImmutableMappingProtocol):
146146
def _full_mapping(self, data):
147-
"""Return a mapping object with the value contained in data
147+
"""Return a mapping object with the values contained in data
148148
dictionary"""
149149
x = self._empty_mapping()
150150
for key, value in data.items():

0 commit comments

Comments
 (0)