From: JINMEI Tatuya Date: Fri, 6 Jan 2012 22:03:33 +0000 (-0800) Subject: [1508] small style clenaups: folded long lines X-Git-Tag: trac2351_base~301^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=07ff448e6c11eba022786cccf03d89e658c37d9f;p=thirdparty%2Fkea.git [1508] small style clenaups: folded long lines --- diff --git a/src/lib/python/isc/bind10/tests/component_test.py b/src/lib/python/isc/bind10/tests/component_test.py index 3782813a7a..95137a93e4 100644 --- a/src/lib/python/isc/bind10/tests/component_test.py +++ b/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)