(organisation: Organisation)
| 399 | |
| 400 | @pytest.fixture() |
| 401 | def scale_up_subscription(organisation: Organisation) -> Subscription: |
| 402 | Subscription.objects.filter(organisation=organisation).update( |
| 403 | plan=SCALE_UP, subscription_id="subscription-id" |
| 404 | ) |
| 405 | organisation.refresh_from_db() |
| 406 | return organisation.subscription |
| 407 | |
| 408 | |
| 409 | @pytest.fixture() |
nothing calls this directly
no test coverage detected
searching dependent graphs…