fix typos in documentation

Change-Id: Ib0910e6ef52af837be7d795c017072c7c01feb74
This commit is contained in:
melissaml 2018-03-23 05:42:29 +08:00
parent 73c24602e7
commit bab9c2087b
9 changed files with 10 additions and 10 deletions

View File

@ -126,7 +126,7 @@ describe 'oslo::cache' do
}
end
it 'configures oslo_policy section with overriden list values as strings' do
it 'configures oslo_policy section with overridden list values as strings' do
is_expected.to contain_keystone_config('cache/backend_argument').with_value('foo:bar')
is_expected.to contain_keystone_config('cache/memcache_servers').with_value('host1:11211,host2:11211')
is_expected.to contain_keystone_config('cache/proxies').with_value('proxy1,proxy2')

View File

@ -52,7 +52,7 @@ describe 'oslo::messaging::amqp' do
:sasl_default_realm => 'overcloud-1'
}
end
it 'configure oslo_messaging_amqp with overriden values' do
it 'configure oslo_messaging_amqp with overridden values' do
is_expected.to contain_keystone_config('oslo_messaging_amqp/idle_timeout').with_value(2000)
is_expected.to contain_keystone_config('oslo_messaging_amqp/container_name').with_value('openstack')
is_expected.to contain_keystone_config('oslo_messaging_amqp/username').with_value('newuser')

View File

@ -24,7 +24,7 @@ describe 'oslo::messaging::default' do
}
end
it 'configure DEFAULT with overriden values' do
it 'configure DEFAULT with overridden values' do
is_expected.to contain_keystone_config('DEFAULT/rpc_response_timeout').with_value('42')
is_expected.to contain_keystone_config('DEFAULT/transport_url').with_value('proto://url').with_secret(true)
is_expected.to contain_keystone_config('DEFAULT/control_exchange').with_value('openstack')

View File

@ -23,7 +23,7 @@ describe 'oslo::messaging::notifications' do
}
end
it 'configure oslo_messaging_notifications with overriden values' do
it 'configure oslo_messaging_notifications with overridden values' do
is_expected.to contain_keystone_config('oslo_messaging_notifications/driver').with_value('messaging')
is_expected.to contain_keystone_config('oslo_messaging_notifications/transport_url').with_value('some_protocol://some_url').with_secret(true)
is_expected.to contain_keystone_config('oslo_messaging_notifications/topics').with_value('notifications')
@ -38,7 +38,7 @@ describe 'oslo::messaging::notifications' do
}
end
it 'configures oslo_messaging_notifications section with overriden list values as strings' do
it 'configures oslo_messaging_notifications section with overridden list values as strings' do
is_expected.to contain_keystone_config('oslo_messaging_notifications/driver').with_value('messaging')
is_expected.to contain_keystone_config('oslo_messaging_notifications/topics').with_value('notifications')
end

View File

@ -194,7 +194,7 @@ describe 'oslo::messaging::rabbit' do
{ :rabbit_hosts => 'rabbit1:5672,rabbit2:5673' }
end
it 'configures rabbit with overriden list values as strings' do
it 'configures rabbit with overridden list values as strings' do
is_expected.to contain_keystone_config('oslo_messaging_rabbit/rabbit_hosts').with_value('rabbit1:5672,rabbit2:5673')
end
end

View File

@ -35,7 +35,7 @@ describe 'oslo::messaging::zmq' do
}
end
it 'configure zmq with overriden values' do
it 'configure zmq with overridden values' do
is_expected.to contain_keystone_config('DEFAULT/rpc_zmq_bind_address').with_value('0.0.0.0')
is_expected.to contain_keystone_config('DEFAULT/rpc_zmq_bind_port_retries').with_value('10')
is_expected.to contain_keystone_config('DEFAULT/rpc_zmq_concurrency').with_value('native')

View File

@ -21,7 +21,7 @@ describe 'oslo::middleware' do
:enable_proxy_headers_parsing => true,
}
end
it 'configure oslo_middleware with overriden values' do
it 'configure oslo_middleware with overridden values' do
is_expected.to contain_keystone_config('oslo_middleware/max_request_body_size').with_value(114600)
is_expected.to contain_keystone_config('oslo_middleware/enable_proxy_headers_parsing').with_value(true)
end

View File

@ -37,7 +37,7 @@ describe 'oslo::policy' do
}
end
it 'configures oslo_policy section with overriden list values as strings' do
it 'configures oslo_policy section with overridden list values as strings' do
is_expected.to contain_keystone_config('oslo_policy/policy_dirs').with_value('dir1,/dir/2')
end
end

View File

@ -18,7 +18,7 @@ describe 'oslo::versionedobjects' do
{ :fatal_exception_format_errors => true,
}
end
it 'configure oslo_versionedobjects with overriden values' do
it 'configure oslo_versionedobjects with overridden values' do
is_expected.to contain_keystone_config('oslo_versionedobjects/fatal_exception_format_errors').with_value(true)
end