Skip to content

Commit 4a9f2b5

Browse files
committed
Change test setup for set 'approval_required' parameter to bool for Service Plans.
1 parent 5e31794 commit 4a9f2b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def account_user(account,account_user_params) -> AccountUser:
152152
@pytest.fixture(scope='module')
153153
def service_plan_params() -> dict:
154154
suffix = get_suffix()
155-
return {"name":f'test-{suffix}', "approval_required":'True'}
155+
return {"name":f'test-{suffix}', "approval_required": True}
156156

157157
@pytest.fixture(scope='module')
158158
def service_plan(service, service_plan_params) -> ServicePlan:

0 commit comments

Comments
 (0)