Correct misspelled words

Correct some misspelled words:
responCe => responSe,
unkown => unkNown
infomation => infoRmation.

Change-Id: If0f8c2b71381be087694654969d7ea1483da7b17
This commit is contained in:
Robert Mizielski 2014-07-15 15:28:09 +02:00
parent e40ef9d602
commit e1d8899945
3 changed files with 4 additions and 4 deletions

View File

@ -141,7 +141,7 @@ class TestLoadBalancerBasic(manager.NetworkScenarioTest):
server_or_ip=ip,
private_key=private_key)
# Write a backend's responce into a file
# Write a backend's response into a file
resp = """echo -ne "HTTP/1.1 200 OK\r\nContent-Length: 7\r\n""" \
"""Connection: close\r\nContent-Type: text/html; """ \
"""charset=UTF-8\r\n\r\n%s"; cat >/dev/null"""

View File

@ -102,7 +102,7 @@ class BaseNegativeGenerator(object):
}
}
unkown_type_schema = {
unknown_type_schema = {
"type": "not_defined"
}
@ -131,7 +131,7 @@ class BaseNegativeGenerator(object):
def test_generate_with_unknown_type(self):
self.assertRaises(TypeError, self.generator.generate,
self.unkown_type_schema)
self.unknown_type_schema)
class TestNegativeValidGenerator(base.TestCase, BaseNegativeGenerator):

View File

@ -263,7 +263,7 @@ def parse_args():
parser = argparse.ArgumentParser()
parser.add_argument('--no-failure-debug', '-n', action='store_true',
dest='print_failures', help='Disable printing failure '
'debug infomation in realtime')
'debug information in realtime')
parser.add_argument('--fails', '-f', action='store_true',
dest='post_fails', help='Print failure debug '
'information after the stream is proccesed')