Skip to content

Commit

Permalink
Merge pull request #1394 from microsoft/andrueastman/fixRelease
Browse files Browse the repository at this point in the history
Fix warnings blocking release
  • Loading branch information
andrueastman authored Oct 4, 2023
2 parents 9934507 + d8c39ee commit fa716cf
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class OpenApiPrimaryErrorMessageExtensionTests
public void ExtensionNameMatchesExpected()
{
// Act
string name = OpenApiPrimaryErrorMessageExtension.Name;
string name = Microsoft.OpenApi.MicrosoftExtensions.OpenApiPrimaryErrorMessageExtension.Name;
string expectedName = "x-ms-primary-error-message";

// Assert
Expand All @@ -27,7 +27,7 @@ public void ExtensionNameMatchesExpected()
public void WritesValue()
{
// Arrange
OpenApiPrimaryErrorMessageExtension extension = new()
Microsoft.OpenApi.MicrosoftExtensions.OpenApiPrimaryErrorMessageExtension extension = new()
{
IsPrimaryErrorMessage = true
};
Expand All @@ -50,7 +50,7 @@ public void ParsesValue()
var value = new OpenApiBoolean(true);

// Act
var extension = OpenApiPrimaryErrorMessageExtension.Parse(value);
var extension = Microsoft.OpenApi.MicrosoftExtensions.OpenApiPrimaryErrorMessageExtension.Parse(value);

// Assert
Assert.True(extension.IsPrimaryErrorMessage);
Expand Down

0 comments on commit fa716cf

Please sign in to comment.