Typo-fix: occured => occurred

Change-Id: I07a2fb2f8b70710d9e744c9ba6cd088a2243f144
This commit is contained in:
Anh Tran 2017-02-06 11:18:31 +07:00
parent 458393b947
commit 3454a21219
2 changed files with 3 additions and 3 deletions

View File

@ -157,7 +157,7 @@ if [[ -n "$openstack_image_id" ]]; then
fail=0
while [[ true ]] ; do
if ((fail >= MAX_FAIL)); then
die $LINENO "Instance active status wait timeout occured"
die $LINENO "Instance active status wait timeout occurred"
fi
echo "attempt "$fail" of "$MAX_FAIL
status=$(instance_status $instance_id)

View File

@ -439,7 +439,7 @@ class EC2TestCase(base.BaseTestCase):
try:
waiter().wait_delete(obj_id)
except botocore.exceptions.ClientError as e:
LOG.exception('Exception occured in cleanup waiting')
LOG.exception('Exception occurred in cleanup waiting')
return False
except botocore.exceptions.ClientError as e:
error_code = e.response['Error']['Code']
@ -780,7 +780,7 @@ class EC2TestCase(base.BaseTestCase):
)['RouteTables']))
return True
except Exception:
LOG.exception('Error occured during "delete_vpc_failed" hook')
LOG.exception('Error occurred during "delete_vpc_failed" hook')
return False
def assertEmpty(self, list_obj, msg=None):