Skip to content

Commit

Permalink
Ready to release
Browse files Browse the repository at this point in the history
  • Loading branch information
budcribar committed Jul 29, 2024
1 parent ef9a68a commit 1920c5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions testassets/NUnitTestProject/TestServerWpf.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ protected override async Task TestClient(int num)
var totalFilesRead = response.ConnectionResponses.Sum(x => x.TotalFilesRead);
var totalBytesRead = response.ConnectionResponses.Sum(x => x.TotalBytesRead);

Assert.AreEqual(24 * num, totalFilesRead, "Failed on total files read");
Assert.AreEqual(1251826 * num, totalBytesRead, "Failed on total bytes read");
Assert.AreEqual(28 * num, totalFilesRead, "Failed on total files read");
Assert.AreEqual(1252084 * num, totalBytesRead, "Failed on total bytes read");
Console.WriteLine($"TotalBytesRead {totalBytesRead}");
Console.WriteLine($"TotalReadTime {totalReadTime}");

Expand Down
2 changes: 1 addition & 1 deletion testassets/NUnitTestProject/Utilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public static string BlazorWpfAppEmbeddedExe()
public static int CountRemoteBlazorWpfApp() => Count("RemoteBlazorWebViewTutorial.WpfApp");
#endregion

private static string RelativeRoot => @"..\..\..\..\..\..\..\";
private static string RelativeRoot => @"..\..\..\..\..\..\";

#region WebView
public static string BlazorWebViewDebugPath()
Expand Down

0 comments on commit 1920c5d

Please sign in to comment.