Skip to content

Commit

Permalink
Fixing patch sub cases integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-buttner committed Feb 25, 2021
1 parent ceea3f4 commit 5449edf
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 5449edf

Please sign in to comment.