restore test_slice()
[matthijs/upstream/django-ldapdb.git] / examples / tests.py
index 1ed9e0426bdf2938c56744ec82085c214ccb0787..af8867c19fb2f0df15d1c0a4319cca0674bc5b46 100644 (file)
@@ -143,13 +143,9 @@ class GroupTestCase(BaseTestCase):
 
         qs = LdapGroup.objects.all()
         objs = qs[:2]
-        for o in objs:
-            return 
-        print objs
         self.assertEquals(len(objs), 2)
         self.assertEquals(objs[0].gid, 1000)
         self.assertEquals(objs[1].gid, 1001)
-        return
 
         qs = LdapGroup.objects.all()
         objs = qs[1:]