Skip to content

Commit

Permalink
Updated unit tests to assert that ignore_relationships=True is passed…
Browse files Browse the repository at this point in the history
…, as this parameter is now being used in method calls
  • Loading branch information
vaibhavatlan authored and Aryamanz29 committed Jan 2, 2025
1 parent dc83b43 commit 6c38c79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ def test_append_with_valid_guid_and_no_terms_returns_asset():
client.asset.append_terms(guid=guid, asset_type=asset_type, terms=terms)
== table
)
mock_method.assert_called_once_with(guid=guid, asset_type=asset_type)
mock_method.assert_called_once_with(guid=guid, asset_type=asset_type, ignore_relationships=True)


def test_append_with_valid_guid_when_no_terms_present_returns_asset_with_given_terms():
Expand Down

0 comments on commit 6c38c79

Please sign in to comment.