From 1dee1903c34c2f4ae4447bb7f164a99394d9a4f7 Mon Sep 17 00:00:00 2001 From: Shwetabh Kumar Date: Thu, 16 Nov 2023 14:34:15 +0530 Subject: [PATCH] Fixing test --- tests/test_xero/test_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_xero/test_utils.py b/tests/test_xero/test_utils.py index 414d0f04..f0064dc6 100644 --- a/tests/test_xero/test_utils.py +++ b/tests/test_xero/test_utils.py @@ -184,14 +184,14 @@ def test_sync_customers(mocker, db): customers_count = DestinationAttribute.objects.filter( workspace_id=workspace_id, attribute_type="CUSTOMER" ).count() - assert customers_count == 14 + assert customers_count == 62 xero_connection.sync_customers() new_customers_count = DestinationAttribute.objects.filter( workspace_id=workspace_id, attribute_type="CUSTOMER" ).count() - assert new_customers_count == 14 + assert new_customers_count == 62 def test_sync_tracking_categories(mocker, db):