Skip to content

Commit

Permalink
Minor unit test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin-Molinero committed Mar 1, 2024
1 parent a2b65e0 commit f2a17c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/components/util/test_organization_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ def test_organization_manager_sets_working_organization_id_in_lean_config():

organization_manager.configure_working_organization_id(organization_id)

lean_config_manager.set_properties.assert_called_with({"job-organization-id": organization_id})
lean_config_manager.set_properties.assert_called_with({"organization-id": organization_id})
lean_config_manager.set_properties.assert_has_calls(calls=[mock.call({"job-organization-id": organization_id}),
mock.call({"organization-id": organization_id})])

0 comments on commit f2a17c0

Please sign in to comment.