Skip to content

Commit 9027664

Browse files
committed
Fix bugs after PR review.
1 parent caacdac commit 9027664

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/integration/test_integration_service_subscriptions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@ def test_approve_service_subscription(account, service_subscription, service_pla
2626
asserts.assert_resource(service_subscription)
2727
asserts.assert_resource(account)
2828
asserts.assert_resource(service_plan)
29-
resource = account.service_subscriptions.approve(service_subscription.entity_id)
29+
svc_subs_id = service_subscription.entity_id
30+
resource = account.service_subscriptions.approve(svc_subs_id)
3031
asserts.assert_resource(resource)

0 commit comments

Comments
 (0)