Skip to content

Commit 01d2f8a

Browse files
committed
Misspelling edit
1 parent 7eab59d commit 01d2f8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_lazy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ def test_relatives_not_in_properties(self):
1717
self.assertNotIn('relatives', self.John.__dict__)
1818

1919
def test_extended_properties(self):
20-
print("Jhon's relatives: {0}".format(self.John.relatives))
20+
print("John's relatives: {0}".format(self.John.relatives))
2121
self.assertDictEqual({'name': 'John', 'occupation': 'Coder',
2222
'relatives': 'Many relatives.'},
2323
self.John.__dict__)
2424

2525
def test_relatives_after_access(self):
26-
print("Jhon's relatives: {0}".format(self.John.relatives))
26+
print("John's relatives: {0}".format(self.John.relatives))
2727
self.assertIn('relatives', self.John.__dict__)

0 commit comments

Comments
 (0)