Skip to content

Commit

Permalink
.Net: Fix intermittently failing unit tests (#8705)
Browse files Browse the repository at this point in the history
Closes: #8528
  • Loading branch information
SergeyMenshykh authored Sep 13, 2024
1 parent 82ef22c commit 48f23cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ public async Task ItShouldSupportOldFunctionCallingModelSerializedIntoChatHistor

// Assert
Assert.Equal("abc@domain.com", emailRecipient);
Assert.Contains("61\u00B0F", emailBody);
Assert.Contains("61", emailBody);
}

[Fact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ public async Task ItShouldSupportOldFunctionCallingModelSerializedIntoChatHistor

// Assert
Assert.Equal("abc@domain.com", emailRecipient);
Assert.Contains("61\u00B0F", emailBody);
Assert.Contains("61", emailBody);
}

[Fact]
Expand Down

0 comments on commit 48f23cd

Please sign in to comment.