Skip to content

Commit

Permalink
fix: build with new fluent assertion version
Browse files Browse the repository at this point in the history
  • Loading branch information
latonz committed Jan 29, 2025
1 parent 66c1d98 commit 79f28d0
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
using FluentAssertions.Execution;
using FluentAssertions.Primitives;
using NetArchTest.Rules;

namespace Riok.Mapperly.Abstractions.Tests.Helpers;

internal class ArchTestResultAssertions(TestResult value) : ObjectAssertions<TestResult, ArchTestResultAssertions>(value)
internal class ArchTestResultAssertions(TestResult value)
: ObjectAssertions<TestResult, ArchTestResultAssertions>(value, AssertionChain.GetOrCreate())
{
public void BeSuccessful()
{
Expand Down

0 comments on commit 79f28d0

Please sign in to comment.