Skip to content

Commit

Permalink
[SQUASH] Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
erikzaadi committed Jan 12, 2025
1 parent cf65613 commit bf41328
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions port_ocean/clients/port/mixins/integrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from loguru import logger
from port_ocean.clients.port.authentication import PortAuthentication
from port_ocean.clients.port.utils import handle_status_code
from port_ocean.exceptions.defaults import DefaultsProvisionFailed
from port_ocean.exceptions.port_defaults import DefaultsProvisionFailed
from port_ocean.log.sensetive import sensitive_log_filter

if TYPE_CHECKING:
Expand Down Expand Up @@ -103,7 +103,7 @@ async def create_integration(
query_params = {}

if use_provisioned_defaults:
query_params["provisionEnabled"] = use_provisioned_defaults
query_params["provision_enabled"] = use_provisioned_defaults

if port_app_config and not use_provisioned_defaults:
json["config"] = port_app_config.to_request()
Expand Down

0 comments on commit bf41328

Please sign in to comment.