@@ -56,7 +56,7 @@ def test_list_sources(httpx_mock, platform_client: UnstructuredClient, platform_
56
56
assert source .id == "a15d4161-77a0-4e08-b65e-86f398ce15ad"
57
57
assert source .name == "test_source_name"
58
58
assert source .type == "onedrive"
59
- assert isinstance (source .config , shared .OneDriveSourceConnectorConfig )
59
+ assert isinstance (source .config , shared .OnedriveSourceConnectorConfig )
60
60
assert source .created_at == datetime .fromisoformat ("2023-09-15T01:06:53.146+00:00" )
61
61
62
62
@@ -154,7 +154,7 @@ def test_get_source(httpx_mock, platform_client: UnstructuredClient, platform_ap
154
154
assert source .id == "a15d4161-77a0-4e08-b65e-86f398ce15ad"
155
155
assert source .name == "test_source_name"
156
156
assert source .type == "onedrive"
157
- assert isinstance (source .config , shared .OneDriveSourceConnectorConfig )
157
+ assert isinstance (source .config , shared .OnedriveSourceConnectorConfig )
158
158
assert source .created_at == datetime .fromisoformat ("2023-09-15T01:06:53.146+00:00" )
159
159
160
160
@@ -232,7 +232,7 @@ def test_create_source(httpx_mock, platform_client: UnstructuredClient, platform
232
232
assert source .id == "a15d4161-77a0-4e08-b65e-86f398ce15ad"
233
233
assert source .name == "test_source_name"
234
234
assert source .type == "onedrive"
235
- assert isinstance (source .config , shared .OneDriveSourceConnectorConfig )
235
+ assert isinstance (source .config , shared .OnedriveSourceConnectorConfig )
236
236
assert source .created_at == datetime .fromisoformat ("2023-09-15T01:06:53.146+00:00" )
237
237
238
238
@@ -291,7 +291,7 @@ def test_update_source(httpx_mock, platform_client: UnstructuredClient, platform
291
291
assert updated_source .id == "a15d4161-77a0-4e08-b65e-86f398ce15ad"
292
292
assert updated_source .name == "test_source_name"
293
293
assert updated_source .type == "onedrive"
294
- assert isinstance (updated_source .config , shared .OneDriveSourceConnectorConfig )
294
+ assert isinstance (updated_source .config , shared .OnedriveSourceConnectorConfig )
295
295
assert updated_source .created_at == datetime .fromisoformat (
296
296
"2023-09-15T01:06:53.146+00:00"
297
297
)
0 commit comments