Skip to content

Commit

Permalink
fix: use common error assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilbaczek committed Jun 1, 2024
1 parent 0c9f6f1 commit c8908d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<ItemGroup>
<PackageReference Include="Bogus" Version="35.5.1" />
<PackageReference Include="EvolutionaryArchitecture.Fitnet.Common.Core" Version="4.1.2" />
<PackageReference Include="EvolutionaryArchitecture.Fitnet.Common.UnitTesting" Version="4.1.5" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="xunit" Version="2.8.1" />
<PackageReference Include="xunit.analyzers" Version="1.14.0">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
global using ErrorOr;
global using EvolutionaryArchitecture.Fitnet.Common.UnitTesting.Assertions.ErrorOr;
global using FluentAssertions;
global using Xunit;
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace EvolutionaryArchitecture.Fitnet.Contracts.Core.UnitTests.PrepareContra

using Core.PrepareContract.BusinessRules;
using Fitnet.Common.Core.BussinessRules;
using EvolutionaryArchitecture.Fitnet.Common.UnitTesting.Assertions.ErrorOr;

public sealed class ContractCanBePreparedOnlyForAdultRuleTests
{
[Fact]
Expand Down

0 comments on commit c8908d6

Please sign in to comment.