Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
class TestAuth(TextAnalyticsTest):
@pytest.mark.live_test_only
def test_active_directory_auth(self):
pytest.skip("v3.1-preview.2 doesn't have AAD yet")
token = self.generate_oauth_token()
endpoint = self.get_oauth_endpoint()
text_analytics = TextAnalyticsClient(endpoint, token)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ class TestAuth(AsyncTextAnalyticsTest):
@pytest.mark.live_test_only
@GlobalTextAnalyticsAccountPreparer()
async def test_active_directory_auth(self):
pytest.skip("v3.1-preview.2 doesn't have AAD yet")
token = self.generate_oauth_token()
endpoint = self.get_oauth_endpoint()
text_analytics = TextAnalyticsClient(endpoint, token)
Expand Down