From 6c38c79c4a9ff38df3de129464a521780eb97dbf Mon Sep 17 00:00:00 2001 From: vaibhavatlan Date: Thu, 2 Jan 2025 13:43:56 +0530 Subject: [PATCH] Updated unit tests to assert that ignore_relationships=True is passed, as this parameter is now being used in method calls --- tests/unit/test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_client.py b/tests/unit/test_client.py index 40d36ce73..c23c34f19 100644 --- a/tests/unit/test_client.py +++ b/tests/unit/test_client.py @@ -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():