Skip to content

Commit f7e9645

Browse files
authored
fix: weird merge stuff
1 parent 3c7677d commit f7e9645

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Generated by Django 4.2.25 on 2025-11-05 05:45
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('customer_billing', '0017_summary_renewal_and_future_plan_uuids'),
10+
('customer_billing', '0017_upcoming_invoice_amount_due'),
11+
]
12+
13+
operations = [
14+
]

enterprise_access/apps/customer_billing/tests/test_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ def _create_mock_stripe_event(self, event_type, event_data):
10831083
mock_event.data.object = AttrDict.wrap(event_data)
10841084
return mock_event
10851085

1086-
@mock.patch.object(stripe_api, 'stripe', autospec=True)
1086+
@mock.patch.object(stripe_api, 'stripe')
10871087
def test_upcoming_invoice_amount_due(self, mock_stripe):
10881088
"""
10891089
Test that the `upcoming_invoice_amount_due` value in the StripeEventSummary model is populated

0 commit comments

Comments
 (0)