Skip to content

Commit

Permalink
fix: cspell typos in purview (Azure#26111)
Browse files Browse the repository at this point in the history
  • Loading branch information
syso-jxx authored and mccoyp committed Sep 22, 2022
1 parent d4ff21c commit 8fd7490
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 21 additions & 1 deletion .vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
"sdk/keyvault/azure-keyvault-keys/tests/keys.py",
"sdk/modelsrepository/azure-iot-modelsrepository/**",
"sdk/monitor/azure-monitor-query/**",
"sdk/purview/azure-purview-catalog/**",
"sdk/servicefabric/azure-servicefabric/**",
"sdk/search/azure-search-documents/**",
"sdk/storage/azure-storage-blob-changefeed/**",
Expand Down Expand Up @@ -884,6 +883,27 @@
"jsonify",
"ints"
]
},
{
"filename": "sdk/purview/azure-purview-catalog/azure/purview/catalog/aio/operations/*.py",
"words": [
"struct",
"STRUCT",
"nonly",
"nthe",
"reques"
]
},
{
"filename": "sdk/purview/azure-purview-catalog/azure/purview/catalog/operations/*.py",
"words": [
"struct",
"structdef",
"STRUCT",
"nonly",
"nthe",
"reques"
]
}
],
"allowCompoundWords": true
Expand Down
1 change: 1 addition & 0 deletions sdk/purview/azure-purview-catalog/tests/test_smoke.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class TestPurviewCatalogSmoke(PurviewCatalogTest):
def test_basic_smoke_test(self, purviewcatalog_endpoint):
client = self.create_client(endpoint=purviewcatalog_endpoint)
response = client.types.get_all_type_definitions()
# cspell: disable-next-line
assert set(response.keys()) == set(['enumDefs', 'structDefs', 'classificationDefs', 'entityDefs', 'relationshipDefs','businessMetadataDefs'])

@recorded_by_proxy
Expand Down
3 changes: 2 additions & 1 deletion sdk/purview/azure-purview-catalog/tests/test_smoke_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ class TestPurviewCatalogSmokeAsync(PurviewCatalogTestAsync):
async def test_basic_smoke_test(self, purviewcatalog_endpoint):
client = self.create_async_client(endpoint=purviewcatalog_endpoint)
response = await client.types.get_all_type_definitions()


# cspell: disable-next-line
assert set(response.keys()) == set(['enumDefs', 'structDefs', 'classificationDefs', 'entityDefs', 'relationshipDefs','businessMetadataDefs'])

0 comments on commit 8fd7490

Please sign in to comment.