Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CSR2017 committed Jan 7, 2025
1 parent 7e989c3 commit 3d7a60c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Feature: Applications endpoints
{
"vendorId": {vendorId},
"applicationName": "Demo application",
"claimSetName": "Claim 06",
"claimSetName": "Claim06",
"educationOrganizationIds": [1, 2, 3]
}
"""
Expand All @@ -105,7 +105,7 @@ Feature: Applications endpoints
"id": {applicationId},
"applicationName": "Demo application",
"vendorId": {vendorId},
"claimSetName": "Claim 06",
"claimSetName": "Claim06",
"educationOrganizationIds": [1, 2, 3]
}
"""
Expand All @@ -116,7 +116,7 @@ Feature: Applications endpoints
{
"vendorId": {vendorId},
"applicationName": "Test Scenario 02",
"claimSetName": "Test Scenario 02"
"claimSetName": "TestScenario02"
}
"""
Then it should respond with 201
Expand All @@ -140,7 +140,7 @@ Feature: Applications endpoints
{
"vendorId": {vendorId},
"applicationName": "Demo application",
"claimSetName": "Claim Scenario 03"
"claimSetName": "ClaimScenario03"
}
"""
Then it should respond with 201
Expand All @@ -150,7 +150,7 @@ Feature: Applications endpoints
"id": {applicationId},
"vendorId": {vendorId},
"applicationName": "Demo application Update",
"claimSetName": "Claim Scenario 03 Update"
"claimSetName": "ClaimScenario03Update"
}
"""
Then it should respond with 204
Expand All @@ -161,7 +161,7 @@ Feature: Applications endpoints
{
"vendorId": {vendorId},
"applicationName": "Delete application",
"claimSetName": "Claim Scenario 05"
"claimSetName": "ClaimScenario05"
}
"""
Then it should respond with 201
Expand All @@ -174,7 +174,7 @@ Feature: Applications endpoints
{
"vendorId": {vendorId},
"applicationName": "Delete application",
"claimSetName": "Claim Scenario 06"
"claimSetName": "ClaimScenario06"
}
"""
Then it should respond with 201
Expand All @@ -189,7 +189,7 @@ Feature: Applications endpoints
{
"vendorId": {vendorId},
"applicationName": "Delete application",
"claimSetName": "Claim Scenario 07"
"claimSetName": "ClaimScenario07"
}
"""
Then it should respond with 201
Expand All @@ -201,7 +201,7 @@ Feature: Applications endpoints
"id": {applicationId},
"vendorId": {vendorId},
"applicationName": "Delete application update",
"claimSetName": "Claim Scenario 07"
"claimSetName": "ClaimScenario07"
}
"""
Then it should respond with 404
Expand All @@ -212,7 +212,7 @@ Feature: Applications endpoints
{
"vendorId": {vendorId},
"applicationName": "Delete application",
"claimSetName": "Claim Scenario 08"
"claimSetName": "ClaimScenario08"
}
"""
Then it should respond with 201
Expand All @@ -235,7 +235,7 @@ Feature: Applications endpoints
{
"vendorId": {vendorId},
"applicationName": "Delete application",
"claimSetName": "Claim Scenario 04"
"claimSetName": "ClaimScenario04"
}
"""
Then it should respond with 400
Expand All @@ -246,7 +246,7 @@ Feature: Applications endpoints
{
"vendorId": 9999,
"applicationName": "Demo application",
"claimSetName": "Claim 999",
"claimSetName": "Claim999",
"educationOrganizationIds": [1, 2, 3]
}
"""
Expand Down Expand Up @@ -274,7 +274,7 @@ Feature: Applications endpoints
{
"vendorId": 9999,
"applicationName": "",
"claimSetName": "Claim 999",
"claimSetName": "Claim999",
"educationOrganizationIds": [1, 2, 3]
}
"""
Expand Down Expand Up @@ -330,7 +330,7 @@ Feature: Applications endpoints
{
"vendorId": 9999,
"applicationName": "Demo application",
"claimSetName": "Claim 999",
"claimSetName": "Claim999",
"educationOrganizationIds": [0]
}
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ Feature: Vendors endpoints
{
"vendorId": {vendorId},
"applicationName": "Demo application",
"claimSetName": "Claim 06",
"claimSetName": "Claim06",
"educationOrganizationIds": [1, 2, 3]
}
"""
Expand All @@ -331,7 +331,7 @@ Feature: Vendors endpoints
"id": {id},
"applicationName": "Demo application",
"vendorId": {vendorId},
"claimSetName": "Claim 06",
"claimSetName": "Claim06",
"educationOrganizationIds": [
1,
2,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Authorization: bearer {{configToken}}
{
"vendorId": {{vendorId}},
"applicationName": "Demo application",
"claimSetName": "SIS Vendor"
"claimSetName": "SIS-Vendor"
}

###
Expand Down Expand Up @@ -104,7 +104,7 @@ Authorization: bearer {{configToken}}
{
"vendorId": {{vendorId}},
"applicationName": "Delete me",
"claimSetName": "Delete me"
"claimSetName": "Delete-me"
}

###
Expand Down

0 comments on commit 3d7a60c

Please sign in to comment.