Browse Source

[213] Remove some unneeded assignments in tests

Michal 'vorner' Vaner 13 years ago
parent
commit
65f4be2b65
1 changed files with 0 additions and 5 deletions
  1. 0 5
      src/bin/bind10/tests/bind10_test.py.in

+ 0 - 5
src/bin/bind10/tests/bind10_test.py.in

@@ -529,7 +529,6 @@ class TestStartStopProcessesBob(unittest.TestCase):
 
         bob.start_all_components()
         bob.runnable = True
-        bob._BoB_started = True
         bob.config_handler(self.construct_config(False, False))
         self.check_started_none(bob)
 
@@ -591,7 +590,6 @@ class TestStartStopProcessesBob(unittest.TestCase):
 
         bob.start_all_components()
 
-        bob._BoB_started = True
         bob.runnable = True
         bob.config_handler(self.construct_config(True, True))
         self.check_started_both(bob)
@@ -629,8 +627,6 @@ class TestStartStopProcessesBob(unittest.TestCase):
         self.check_preconditions(bob)
 
         bob.start_all_components()
-        bob._BoB_started = True
-        bob.runnable = True
         bob.config_handler(self.construct_config(False, False))
         self.check_started_dhcp(bob, False, False)
 
@@ -963,7 +959,6 @@ class TestBossComponents(unittest.TestCase):
         self.assertRaises(Exception, bob.component_shutdown, 1)
         self.assertEqual(1, bob.exitcode)
         bob._BoB__started = True
-        bob.runnable = True
         bob.component_shutdown(2)
         self.assertEqual(2, bob.exitcode)
         self.assertFalse(bob.runnable)