File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
x-pack/test/licensing_plugin/legacy Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ export default function(ftrContext: FtrProviderContext) {
3131 } = await supertest . get ( '/api/xpack/v1/info' ) . expect ( 200 ) ;
3232
3333 expect ( legacyInitialLicense . license ?. type ) . to . be ( 'basic' ) ;
34- expect ( legacyInitialLicense . features ) . to . have . property ( 'security' ) ;
3534 expect ( legacyInitialLicenseHeaders [ 'kbn-xpack-sig' ] ) . to . be . a ( 'string' ) ;
3635
3736 await scenario . startTrial ( ) ;
@@ -42,7 +41,6 @@ export default function(ftrContext: FtrProviderContext) {
4241 . expect ( 200 ) ;
4342
4443 expect ( legacyTrialLicense . license ?. type ) . to . be ( 'trial' ) ;
45- expect ( legacyTrialLicense . features ) . to . have . property ( 'security' ) ;
4644 expect ( legacyTrialLicenseHeaders [ 'kbn-xpack-sig' ] ) . to . not . be (
4745 legacyInitialLicenseHeaders [ 'kbn-xpack-sig' ]
4846 ) ;
@@ -52,7 +50,6 @@ export default function(ftrContext: FtrProviderContext) {
5250
5351 const { body : legacyBasicLicense } = await supertest . get ( '/api/xpack/v1/info' ) . expect ( 200 ) ;
5452 expect ( legacyBasicLicense . license ?. type ) . to . be ( 'basic' ) ;
55- expect ( legacyBasicLicense . features ) . to . have . property ( 'security' ) ;
5653
5754 // banner shown only when license expired not just deleted
5855 await testSubjects . missingOrFail ( 'licenseExpiredBanner' ) ;
You can’t perform that action at this time.
0 commit comments