Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FR] Update to canada central #17119

Merged
merged 1 commit into from
Nov 20, 2020
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 @@ -43,7 +43,6 @@ public void FormRecognizerClientCannotAuthenticateWithFakeApiKey()
}

[Test]
[Ignore("AAD not supported")]
public async Task FormRecognizerClientCanAuthenticateWithTokenCredential()
{
var client = CreateFormRecognizerClient(useTokenCredential: true);
Expand Down Expand Up @@ -527,8 +526,8 @@ public void StartRecognizeContentWithNoSupporttedLanguage()
/// Recognizer cognitive service and perform analysis of receipts.
/// </summary>
[Test]
[TestCase(true)]
[TestCase(false)]
[TestCase(true, Ignore= "Receipts latest changes not yet in this region")]
[TestCase(false, Ignore = "Receipts latest changes not yet in this region")]
public async Task StartRecognizeReceiptsPopulatesExtractedReceiptJpg(bool useStream)
{
var client = CreateFormRecognizerClient();
Expand Down Expand Up @@ -638,8 +637,8 @@ public async Task StartRecognizeReceiptsPopulatesExtractedReceiptJpg(bool useStr
}

[Test]
[TestCase(true)]
[TestCase(false)]
[TestCase(true, Ignore="Receipts latest changes not yet in this region")]
[TestCase(false, Ignore="Receipts latest changes not yet in this region")]
public async Task StartRecognizeReceiptsPopulatesExtractedReceiptPng(bool useStream)
{
var client = CreateFormRecognizerClient();
Expand Down Expand Up @@ -752,8 +751,8 @@ public async Task StartRecognizeReceiptsPopulatesExtractedReceiptPng(bool useStr
}

[Test]
[TestCase(true)]
[TestCase(false)]
[TestCase(true, Ignore = "Receipts latest changes not yet in this region")]
[TestCase(false, Ignore = "Receipts latest changes not yet in this region")]
public async Task StartRecognizeReceiptsCanParseMultipageForm(bool useStream)
{
var client = CreateFormRecognizerClient();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ public void FormTrainingClientCannotAuthenticateWithFakeApiKey()
}

[Test]
[Ignore("AAD Not supported")]
public async Task FormTrainingClientCanAuthenticateWithTokenCredential()
{
var client = CreateFormTrainingClient(useTokenCredential: true);
Expand Down
Loading