Browse Source

[1508] small style clenaups: folded long lines

JINMEI Tatuya 13 years ago
parent
commit
07ff448e6c
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/lib/python/isc/bind10/tests/component_test.py

+ 4 - 4
src/lib/python/isc/bind10/tests/component_test.py

@@ -633,8 +633,8 @@ class ComponentTests(BossUtils, unittest.TestCase):
         """
         Some tests around the SockCreator component.
         """
-        component = isc.bind10.special_component.SockCreator(None, self, 'needed',
-                                                             None)
+        component = isc.bind10.special_component.SockCreator(None, self,
+                                                             'needed', None)
         orig_setuid = isc.bind10.special_component.posix.setuid
         isc.bind10.special_component.posix.setuid = self.setuid
         orig_creator = \
@@ -650,8 +650,8 @@ class ComponentTests(BossUtils, unittest.TestCase):
         component.kill()
         component.kill(True)
         self.uid = 42
-        component = isc.bind10.special_component.SockCreator(None, self, 'needed',
-                                                             None)
+        component = isc.bind10.special_component.SockCreator(None, self,
+                                                             'needed', None)
         component.start()
         # This time, it get's called
         self.assertEqual(42, self.__uid_set)