Fix typo OSCP -> OCSP (#22586)

This commit is contained in:
Thomas Schweizer-Bolzonello 2023-08-28 21:39:01 +03:00 committed by GitHub
parent 66db439027
commit 958eb96bab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -283,7 +283,7 @@ to be set on all PR secondary clusters.`,
},
"ocsp_servers": {
Type: framework.TypeStringSlice,
Description: `OSCP Servers`,
Description: `OCSP Servers`,
Required: false,
},
"enable_aia_url_templating": {

View file

@ -35,7 +35,7 @@ export default class PkiConfigUrlsModel extends Model {
crlDistributionPoints;
@attr({
label: 'OSCP Servers',
label: 'OCSP Servers',
subText: 'Specifies the URL values for the OCSP Servers field.',
showHelpText: false,
editType: 'stringArray',

View file

@ -122,7 +122,7 @@ module('Integration | Component | Page::PkiConfigurationDetails', function (hook
.hasText('15m', 'it renders delta build duration');
assert
.dom(SELECTORS.rowValue('Responder APIs'))
.hasText('Enabled', 'responder apis value renders Enabled if oscp_disable=false');
.hasText('Enabled', 'responder apis value renders Enabled if ocsp_disable=false');
assert.dom(SELECTORS.rowValue('Interval')).hasText('77h', 'interval value renders');
// check falsy aut_rebuild and _enable_delta hides duration values
this.crl.autoRebuild = false;