Skip to content

Commit fbe4766

Browse files
Fix test
Fix broken test.
1 parent 366e565 commit fbe4766

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/TodoApp/TodoApp.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
<PackageReference Include="Microsoft.OpenApi" Version="2.0.0-preview7" />
2121
<PackageReference Include="Microsoft.TypeScript.MSBuild" Version="5.8.1" PrivateAssets="all" />
2222
<PackageReference Include="NSwag.AspNetCore" Version="14.2.0" />
23-
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.0-pr.3283.1238" />
24-
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="9.0.0-pr.3283.1238" />
23+
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.0-pr.3283.1244" />
24+
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="9.0.0-pr.3283.1244" />
2525
</ItemGroup>
2626
<ItemGroup>
2727
<Content Update="package.json;package-lock.json;tsconfig.json" CopyToPublishDirectory="Never" />

tests/TodoApp.Tests/OpenApiTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public OpenApiTests(TodoAppFixture fixture, ITestOutputHelper outputHelper)
2626
[Theory]
2727
[InlineData("/nswag/v1.json")]
2828
[InlineData("/openapi/v1.json", Skip = "https://github.com/dotnet/aspnetcore/issues/61038")]
29-
[InlineData("/swagger/v1/swagger.json", Skip = "https://github.com/microsoft/OpenAPI.NET/issues/2300")]
29+
[InlineData("/swagger/v1/swagger.json")]
3030
public async Task Schema_Is_Correct(string schemaUrl)
3131
{
3232
// Arrange

0 commit comments

Comments
 (0)