File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
test/Microsoft.OpenApi.Tests/MicrosoftExtensions Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ public class OpenApiPrimaryErrorMessageExtensionTests
16
16
public void ExtensionNameMatchesExpected ( )
17
17
{
18
18
// Act
19
- string name = OpenApiPrimaryErrorMessageExtension . Name ;
19
+ string name = Microsoft . OpenApi . MicrosoftExtensions . OpenApiPrimaryErrorMessageExtension . Name ;
20
20
string expectedName = "x-ms-primary-error-message" ;
21
21
22
22
// Assert
@@ -27,7 +27,7 @@ public void ExtensionNameMatchesExpected()
27
27
public void WritesValue ( )
28
28
{
29
29
// Arrange
30
- OpenApiPrimaryErrorMessageExtension extension = new ( )
30
+ Microsoft . OpenApi . MicrosoftExtensions . OpenApiPrimaryErrorMessageExtension extension = new ( )
31
31
{
32
32
IsPrimaryErrorMessage = true
33
33
} ;
@@ -50,7 +50,7 @@ public void ParsesValue()
50
50
var value = new OpenApiBoolean ( true ) ;
51
51
52
52
// Act
53
- var extension = OpenApiPrimaryErrorMessageExtension . Parse ( value ) ;
53
+ var extension = Microsoft . OpenApi . MicrosoftExtensions . OpenApiPrimaryErrorMessageExtension . Parse ( value ) ;
54
54
55
55
// Assert
56
56
Assert . True ( extension . IsPrimaryErrorMessage ) ;
You can’t perform that action at this time.
0 commit comments