Skip to content

Commit

Permalink
Update AssertReporter.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed May 11, 2024
1 parent b2cdd37 commit 28da172
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public void AssertEqual(string approvedContent, string receivedContent)
{
try
{
var type = Type.GetType(assertClass);
var type = Type.GetType(assertClass, true);
var parameters = new[] { approvedContent, receivedContent };
InvokeEqualsMethod(type, parameters);
}
Expand Down

0 comments on commit 28da172

Please sign in to comment.