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 b9ba9e8 commit e2ce524Copy full SHA for e2ce524
.travis.yml
@@ -2,7 +2,6 @@ language: python
2
3
python:
4
- 2.7
5
- - 3.2
6
- 3.3
7
8
script:
python3/koans/about_class_attributes.py
@@ -23,10 +23,10 @@ def test_classes_are_objects_too(self):
23
24
def test_objects_have_methods(self):
25
fido = self.Dog()
26
- self.assertEqual(26, len(dir(fido)))
+ self.assertEqual(25, len(dir(fido)))
27
28
def test_classes_have_methods(self):
29
- self.assertEqual(26, len(dir(self.Dog)))
+ self.assertEqual(25, len(dir(self.Dog)))
30
31
def test_creating_objects_without_defining_a_class(self):
32
singularity = object()
0 commit comments