Merge pull request #19422 from Seveland12/develop

Fixed spelling of "below" in 9 different files.
This commit is contained in:
jfindlay 2015-01-07 09:32:44 -07:00
commit f329ec9104
9 changed files with 13 additions and 13 deletions

View File

@ -1450,7 +1450,7 @@ class LocalClient(object):
# When running tests, if self.events is not destroyed, we leak 2 # When running tests, if self.events is not destroyed, we leak 2
# threads per test case which uses self.client # threads per test case which uses self.client
if hasattr(self, 'event'): if hasattr(self, 'event'):
# The call bellow will take care of calling 'self.event.destroy()' # The call below will take care of calling 'self.event.destroy()'
del self.event del self.event

View File

@ -702,7 +702,7 @@ class Cloud(object):
continue continue
for vm_name, details in vms.items(): for vm_name, details in vms.items():
# XXX: The logic bellow can be removed once the aws driver # XXX: The logic below can be removed once the aws driver
# is removed # is removed
if vm_name not in names: if vm_name not in names:
continue continue

View File

@ -1256,7 +1256,7 @@ __check_end_of_life_versions() {
case "${DISTRO_NAME_L}" in case "${DISTRO_NAME_L}" in
debian) debian)
# Debian versions bellow 6 are not supported # Debian versions below 6 are not supported
if [ "$DISTRO_MAJOR_VERSION" -lt 6 ]; then if [ "$DISTRO_MAJOR_VERSION" -lt 6 ]; then
echoerror "End of life distributions are not supported." echoerror "End of life distributions are not supported."
echoerror "Please consider upgrading to the next stable. See:" echoerror "Please consider upgrading to the next stable. See:"

View File

@ -2126,7 +2126,7 @@ def apply_master_config(overrides=None, defaults=None):
if isinstance(opts['file_ignore_glob'], str): if isinstance(opts['file_ignore_glob'], str):
opts['file_ignore_glob'] = [opts['file_ignore_glob']] opts['file_ignore_glob'] = [opts['file_ignore_glob']]
# Let's make sure `worker_threads` does not drop bellow 3 which has proven # Let's make sure `worker_threads` does not drop below 3 which has proven
# to make `salt.modules.publish` not work under the test-suite. # to make `salt.modules.publish` not work under the test-suite.
if opts['worker_threads'] < 3 and opts.get('peer', None): if opts['worker_threads'] < 3 and opts.get('peer', None):
log.warning( log.warning(

View File

@ -505,7 +505,7 @@ class SaltEvent(object):
def destroy(self, linger=5000): def destroy(self, linger=5000):
if self.cpub is True and self.sub.closed is False: if self.cpub is True and self.sub.closed is False:
# Wait at most 2.5 secs to send any remaining messages in the # Wait at most 2.5 secs to send any remaining messages in the
# socket or the context.term() bellow will hang indefinitely. # socket or the context.term() below will hang indefinitely.
# See https://github.com/zeromq/pyzmq/issues/102 # See https://github.com/zeromq/pyzmq/issues/102
self.sub.setsockopt(zmq.LINGER, linger) self.sub.setsockopt(zmq.LINGER, linger)
self.sub.close() self.sub.close()

View File

@ -369,7 +369,7 @@ class SaltTestsuiteParser(SaltCoverageTestingParser):
) )
status.append(results) status.append(results)
# We executed ALL unittests, we can skip running unittests by name # We executed ALL unittests, we can skip running unittests by name
# bellow # below
return status return status
for name in named_unit_test: for name in named_unit_test:

View File

@ -284,7 +284,7 @@ class ConfigTestCase(TestCase, integration.AdaptedConfigurationTestCaseMixIn):
) )
# Now, let's populate an extra configuration file under minion.d # Now, let's populate an extra configuration file under minion.d
# Notice that above we've set blah as False and bellow as True. # Notice that above we've set blah as False and below as True.
# Since the minion.d files are loaded after the main configuration # Since the minion.d files are loaded after the main configuration
# file so overrides can happen, the final value of blah should be # file so overrides can happen, the final value of blah should be
# True. # True.
@ -319,7 +319,7 @@ class ConfigTestCase(TestCase, integration.AdaptedConfigurationTestCaseMixIn):
) )
# Now, let's populate an extra configuration file under master.d # Now, let's populate an extra configuration file under master.d
# Notice that above we've set blah as False and bellow as True. # Notice that above we've set blah as False and below as True.
# Since the master.d files are loaded after the main configuration # Since the master.d files are loaded after the main configuration
# file so overrides can happen, the final value of blah should be # file so overrides can happen, the final value of blah should be
# True. # True.

View File

@ -251,7 +251,7 @@ class TestSaltEvent(TestCase):
# Fire events again # Fire events again
me.fire_event({'data': 'foo3'}, 'evt3') me.fire_event({'data': 'foo3'}, 'evt3')
me.fire_event({'data': 'foo4'}, 'evt4') me.fire_event({'data': 'foo4'}, 'evt4')
# We not force unrelated pending events not to be dropped, so both of the event bellow work and are not # We not force unrelated pending events not to be dropped, so both of the event below work and are not
# None # None
evt2 = me.get_event(tag='evt4', use_pending=True) evt2 = me.get_event(tag='evt4', use_pending=True)
evt1 = me.get_event(tag='evt3', use_pending=True) evt1 = me.get_event(tag='evt3', use_pending=True)

View File

@ -21,7 +21,7 @@ class TestWhich(integration.TestCase):
expected. expected.
''' '''
# The mock patch bellow will make sure that ALL calls to the which function # The mock patch below will make sure that ALL calls to the which function
# returns None # returns None
@patch('salt.utils.which', lambda exe: None) @patch('salt.utils.which', lambda exe: None)
def test_missing_binary_in_linux(self): def test_missing_binary_in_linux(self):
@ -29,13 +29,13 @@ class TestWhich(integration.TestCase):
salt.utils.which('this-binary-does-not-exist') is None salt.utils.which('this-binary-does-not-exist') is None
) )
# The mock patch bellow will make sure that ALL calls to the which function # The mock patch below will make sure that ALL calls to the which function
# return whatever is sent to it # return whatever is sent to it
@patch('salt.utils.which', lambda exe: exe) @patch('salt.utils.which', lambda exe: exe)
def test_existing_binary_in_linux(self): def test_existing_binary_in_linux(self):
self.assertTrue(salt.utils.which('this-binary-exists-under-linux')) self.assertTrue(salt.utils.which('this-binary-exists-under-linux'))
# The mock patch bellow, since we're not providing the return value, we # The mock patch below, since we're not providing the return value, we
# will be able to tweak it within the test case. The testcase MUST accept # will be able to tweak it within the test case. The testcase MUST accept
# an argument which is the MagicMock'ed object # an argument which is the MagicMock'ed object
@patch('os.access') @patch('os.access')
@ -84,7 +84,7 @@ class TestWhich(integration.TestCase):
None None
) )
# The mock patch bellow, since we're not providing the return value, we # The mock patch below, since we're not providing the return value, we
# will be able to tweak it within the test case. The testcase MUST accept # will be able to tweak it within the test case. The testcase MUST accept
# an argument which is the MagicMock'ed object # an argument which is the MagicMock'ed object
@patch('os.access') @patch('os.access')