Skip to content

Commit e2ce524

Browse files
committed
Making travis happy
1 parent b9ba9e8 commit e2ce524

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ language: python
22

33
python:
44
- 2.7
5-
- 3.2
65
- 3.3
76

87
script:

python3/koans/about_class_attributes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ def test_classes_are_objects_too(self):
2323

2424
def test_objects_have_methods(self):
2525
fido = self.Dog()
26-
self.assertEqual(26, len(dir(fido)))
26+
self.assertEqual(25, len(dir(fido)))
2727

2828
def test_classes_have_methods(self):
29-
self.assertEqual(26, len(dir(self.Dog)))
29+
self.assertEqual(25, len(dir(self.Dog)))
3030

3131
def test_creating_objects_without_defining_a_class(self):
3232
singularity = object()

0 commit comments

Comments
 (0)