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.
1 parent 7eab59d commit 01d2f8aCopy full SHA for 01d2f8a
tests/test_lazy.py
@@ -17,11 +17,11 @@ def test_relatives_not_in_properties(self):
17
self.assertNotIn('relatives', self.John.__dict__)
18
19
def test_extended_properties(self):
20
- print("Jhon's relatives: {0}".format(self.John.relatives))
+ print("John's relatives: {0}".format(self.John.relatives))
21
self.assertDictEqual({'name': 'John', 'occupation': 'Coder',
22
'relatives': 'Many relatives.'},
23
self.John.__dict__)
24
25
def test_relatives_after_access(self):
26
27
self.assertIn('relatives', self.John.__dict__)
0 commit comments