Skip to content
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.

chore(deps): update dependency verify.xunit to v23 #613

Merged
merged 2 commits into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<PackageVersion Include="SonarAnalyzer.CSharp" Version="9.17.0.82934"/>
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.556"/>
<PackageVersion Include="Testcontainers.MsSql" Version="3.7.0"/>
<PackageVersion Include="Verify.Xunit" Version="22.11.5"/>
<PackageVersion Include="Verify.Xunit" Version="23.0.0"/>
<PackageVersion Include="xunit" Version="2.6.6"/>
<PackageVersion Include="xunit.runner.visualstudio" Version="2.5.6"/>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

namespace NoPlan.Api.Tests.Integration.Endpoints.V1.ToDos;

[UsesVerify]
public sealed class CreateToDoEndpointTests(NoPlanApiFactory factory) : FakeRequestTest(factory)
{
[Fact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

namespace NoPlan.Api.Tests.Integration.Endpoints.V1.ToDos;

[UsesVerify]
public sealed class DeleteToDoEndpointTests(NoPlanApiFactory factory) : FakeRequestTest(factory)
{
[Fact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

namespace NoPlan.Api.Tests.Integration.Endpoints.V1.ToDos;

[UsesVerify]
public sealed class GetAllToDosEndpointTests(NoPlanApiFactory factory) : FakeRequestTest(factory)
{
[Fact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

namespace NoPlan.Api.Tests.Integration.Endpoints.V1.ToDos;

[UsesVerify]
public sealed class GetToDoEndpointTests(NoPlanApiFactory factory) : FakeRequestTest(factory)
{
[Fact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

namespace NoPlan.Api.Tests.Integration.Endpoints.V1.ToDos;

[UsesVerify]
public sealed class UpdateToDoEndpointTests(NoPlanApiFactory factory) : FakeRequestTest(factory)
{
[Fact]
Expand Down