Skip to content

Commit

Permalink
Accommodate change in Classic assertion.
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanKilleen committed Mar 27, 2024
1 parent 16ef99e commit 1fe688d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Akka.TestKit.NUnit/NUnitAssertions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class NUnitAssertions : ITestKitAssertions

public void Fail(string format = "", params object[] args)
{
ClassicAssert.Fail(format, args);
ClassicAssert.Fail(string.Format(format, args));
}

public void AssertTrue(bool condition, string format = "", params object[] args)
Expand Down

0 comments on commit 1fe688d

Please sign in to comment.