Skip to content

Commit b532b80

Browse files
committed
Fix merge issue
1 parent 7b4070a commit b532b80

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

tests/durabletask/test_client.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
import json
22
import pytest
3-
from unittest.mock import ANY, MagicMock, patch
4-
from google.protobuf import wrappers_pb2
5-
6-
from durabletask.client import AsyncTaskHubGrpcClient, TaskHubGrpcClient
7-
from durabletask.grpc_options import GrpcChannelOptions, GrpcRetryPolicyOptions
83
from datetime import datetime, timezone
94
from unittest.mock import ANY, AsyncMock, MagicMock, patch
105

6+
from google.protobuf import wrappers_pb2
7+
118
import durabletask.history as history
129
import durabletask.internal.orchestrator_service_pb2 as pb
1310
from durabletask.client import AsyncTaskHubGrpcClient, OrchestrationStatus, TaskHubGrpcClient
11+
from durabletask.grpc_options import GrpcChannelOptions, GrpcRetryPolicyOptions
1412
from durabletask.payload.store import LargePayloadStorageOptions, PayloadStore
1513

1614
from durabletask.internal.grpc_interceptor import (
@@ -290,6 +288,8 @@ def test_async_client_uses_provided_channel_directly():
290288
client = AsyncTaskHubGrpcClient(channel=provided_channel, host_address=HOST_ADDRESS)
291289
assert client._channel is provided_channel
292290
mock_get_channel.assert_not_called()
291+
292+
293293
def test_get_orchestration_history_aggregates_chunks_and_deexternalizes_payloads():
294294
store = FakePayloadStore()
295295
token = store.upload(b'history payload')

0 commit comments

Comments
 (0)