Fix typo OSCP -> OCSP (#22586) (#23316)

Co-authored-by: Thomas Schweizer-Bolzonello <thomas@schweizerbolzonello.net>
This commit is contained in:
claire bontempo 2023-09-27 10:15:53 -07:00 committed by GitHub
parent d2db7fbcdd
commit b7dca10a06
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;