Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/organisations/chargebee/chargebee.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def add_single_seat(subscription_id: str) -> None:
)
],
prorate=True,
invoice_immediately=False,
invoice_immediately=True,
),
)

Expand Down
2 changes: 1 addition & 1 deletion api/organisations/chargebee/constants.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ADDITIONAL_SEAT_ADDON_ID = "additional-team-members-scale-up-v2-monthly"
ADDITIONAL_SEAT_ADDON_ID = "additional-team-members-scale-up-v2"

ADDITIONAL_API_START_UP_ADDON_ID = "additional-api-start-up-monthly"
ADDITIONAL_API_SCALE_UP_ADDON_ID = "additional-api-scale-up-monthly"
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ def test_add_single_seat__existing_addon__increments_quantity(mocker) -> None:
)
],
prorate=True,
invoice_immediately=False,
invoice_immediately=True,
),
)

Expand Down Expand Up @@ -585,7 +585,7 @@ def test_add_single_seat__no_existing_addon__creates_addon_with_quantity_one( #
)
],
prorate=True,
invoice_immediately=False,
invoice_immediately=True,
),
)

Expand Down Expand Up @@ -637,7 +637,7 @@ def test_add_single_seat__api_error__raises_upgrade_seats_error( # type: ignore
)
],
prorate=True,
invoice_immediately=False,
invoice_immediately=True,
),
)
assert len(caplog.records) == 1
Expand Down
Loading