We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 404ba4f commit f7e637fCopy full SHA for f7e637f
test/Microsoft.OpenApi.Readers.Tests/V3Tests/OpenApiSchemaTests.cs
@@ -70,12 +70,12 @@ public void ParseExampleStringFragmentShouldSucceed()
70
// Assert
71
Assert.Equivalent(new OpenApiDiagnostic(), diagnostic);
72
73
- openApiAny.Should().BeEquivalentTo(new OpenApiAny(
+ openApiAny.Should().BeEquivalentTo((OpenApiAny)
74
new JsonObject
75
{
76
["foo"] = "bar",
77
["baz"] = new JsonArray() { 1, 2 }
78
- }), options => options.IgnoringCyclicReferences());
+ }, options => options.IgnoringCyclicReferences());
79
}
80
81
[Fact]
0 commit comments