Skip to content

Commit

Permalink
Merge branch 'fix_subcases_bugs' of github.com:cnasikas/kibana into f…
Browse files Browse the repository at this point in the history
…ix_subcases_bugs
  • Loading branch information
cnasikas committed Feb 25, 2021
2 parents 7d8a09f + 5449edf commit 735ae92
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ export default function ({ getService }: FtrProviderContext) {
supertest,
cases: [
{
id: caseInfo.subCase!.id,
version: caseInfo.subCase!.version,
id: caseInfo.subCases![0].id,
version: caseInfo.subCases![0].version,
status: CaseStatuses['in-progress'],
},
],
Expand Down Expand Up @@ -159,8 +159,8 @@ export default function ({ getService }: FtrProviderContext) {
supertest,
cases: [
{
id: caseInfo.subCase!.id,
version: caseInfo.subCase!.version,
id: caseInfo.subCases![0].id,
version: caseInfo.subCases![0].version,
status: CaseStatuses['in-progress'],
},
],
Expand Down Expand Up @@ -239,8 +239,8 @@ export default function ({ getService }: FtrProviderContext) {
supertest,
cases: [
{
id: collectionWithSecondSub.subCase!.id,
version: collectionWithSecondSub.subCase!.version,
id: collectionWithSecondSub.subCases![0].id,
version: collectionWithSecondSub.subCases![0].version,
status: CaseStatuses['in-progress'],
},
],
Expand Down Expand Up @@ -349,8 +349,8 @@ export default function ({ getService }: FtrProviderContext) {
supertest,
cases: [
{
id: caseInfo.subCase!.id,
version: caseInfo.subCase!.version,
id: caseInfo.subCases![0].id,
version: caseInfo.subCases![0].version,
status: CaseStatuses['in-progress'],
},
],
Expand Down

0 comments on commit 735ae92

Please sign in to comment.