Skip to content

Commit

Permalink
Fixing test
Browse files Browse the repository at this point in the history
  • Loading branch information
Shwetabhk committed Nov 16, 2023
1 parent 40a91fe commit 1dee190
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_xero/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 1dee190

Please sign in to comment.