1
0
mirror of synced 2025-12-23 21:03:15 -05:00

🐛 Source Google Ads: Fix error for new customers for incremental events streams (#35664)

This commit is contained in:
Anatolii Yatsuk
2024-03-01 14:51:53 +02:00
committed by GitHub
parent 55d206b90e
commit df71835d9a
7 changed files with 204 additions and 132 deletions

View File

@@ -55,6 +55,10 @@ def mock_oauth_call(requests_mock):
def customers(config):
return [CustomerModel(id=_id, time_zone="local", is_manager_account=False) for _id in config["customer_id"].split(",")]
@pytest.fixture
def additional_customers(config, customers):
return customers + [CustomerModel(id="789", time_zone="local", is_manager_account=False)]
@pytest.fixture
def customers_manager(config):