Merge pull request #1190 from scop/spelling

Comment spelling fixes
pull/1187/head
Yaroslav Halchenko 2015-09-13 10:33:41 -04:00
commit cafc77d7db
1 changed files with 2 additions and 2 deletions

View File

@ -224,7 +224,7 @@ class CommandActionTest(LogCaptureTestCase):
# First test if can kill the bastard
self.assertRaises(
RuntimeError, CommandAction.executeCmd, 'bash %s' % tmpFilename, timeout=.1)
# Verify that the proccess itself got killed
# Verify that the process itself got killed
self.assertFalse(pid_exists(getnastypid())) # process should have been killed
self.assertTrue(self._is_logged('timed out'))
self.assertTrue(self._is_logged('killed with SIGTERM'))
@ -233,7 +233,7 @@ class CommandActionTest(LogCaptureTestCase):
self.assertRaises(
RuntimeError, CommandAction.executeCmd, 'out=`bash %s`; echo ALRIGHT' % tmpFilename,
timeout=.2)
# Verify that the proccess itself got killed
# Verify that the process itself got killed
self.assertFalse(pid_exists(getnastypid()))
self.assertTrue(self._is_logged('timed out'))
self.assertTrue(self._is_logged('killed with SIGTERM'))