Skip to content

Commit

Permalink
Test - Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
amaitland committed Oct 14, 2021
1 parent 439970d commit aac5439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CefSharp.Test/WebBrowserTestExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public static Task<QUnitTestResult> WaitForQUnitTestExeuctionToComplete(this IWe
var total = (int)details.total;
var passed = (int)details.passed;
tcs.TrySetResult(new QUnitTestResult { Details = details, Passed = passed, Total = total });
tcs.TrySetResult(new QUnitTestResult { Passed = passed, Total = total });
}
else
{
Expand Down

0 comments on commit aac5439

Please sign in to comment.