Fix misspelling in comments

This commit fixes misspelled words in comments. It's just like
housekeeping.

Change-Id: Ic7d0373782b7ca322fb979dd3788db01b45a0370
This commit is contained in:
Masayuki Igawa 2015-09-18 14:50:41 +09:00
parent d8c555f374
commit dafc36a4ca
2 changed files with 5 additions and 5 deletions

View File

@ -39,7 +39,7 @@ SHELL_OPTS = [
help='Run id to use for the specified subunit stream, can only'
' be used if a single stream is provided'),
cfg.StrOpt('attr_regex', default='\[(.*)\]',
help='The regex to use to extract the comma seperated list of '
help='The regex to use to extract the comma separated list of '
'test attributes from the test_id'),
cfg.BoolOpt('verbose', short='v',
help='Verbose output including logging of SQL statements'),

View File

@ -52,7 +52,7 @@ class TestShell(base.TestCase):
}
fake_values = {}
result = shell.running_avg(fake_test, fake_values, fake_result)
# Let's do some arithmatic
# Let's do some arithmetic
expected_avg = ((150 * 30.452) + 50) / 151
# Both values should be 30.581456953642384
self.assertEqual(expected_avg, result['run_time'])
@ -81,7 +81,7 @@ class TestShell(base.TestCase):
'end_time': datetime.datetime(1914, 6, 28, 10, 45, 50),
}
values = shell.increment_counts(fake_test, fake_result)
# Check to ensure counts incrememented properly
# Check to ensure counts incremented properly
self.assertEqual(values['run_count'], 16)
self.assertEqual(values['success'], 6)
# Ensure run_time is updated on success
@ -100,7 +100,7 @@ class TestShell(base.TestCase):
'end_time': datetime.datetime(1914, 6, 28, 10, 45, 50),
}
values = shell.increment_counts(fake_test, fake_result)
# Check to ensure counts incrememented properly
# Check to ensure counts incremented properly
self.assertEqual(values['run_count'], 16)
self.assertEqual(values['failure'], 11)
# Avg runtime should only be updated on success
@ -118,7 +118,7 @@ class TestShell(base.TestCase):
'end_time': datetime.datetime(1914, 6, 28, 10, 45, 2),
}
values = shell.increment_counts(fake_test, fake_result)
# No test counts incrememented with a skip
# No test counts incremented with a skip
self.assertEqual(values, {})
def test_increment_counts_unknown_status(self):