Skip to content

Commit

Permalink
Changed AssertValidPingOutput back
Browse files Browse the repository at this point in the history
  • Loading branch information
twoody0 committed Dec 11, 2024
1 parent 96a1df2 commit 3416074
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Assignment.Tests/PingProcessTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,8 @@ private void AssertValidPingOutput(int exitCode, string? stdOutput)
Assert.AreEqual<int>(0, exitCode);
}

private void AssertValidPingOutput(PingResult result) =>
private void AssertValidPingOutput(PingResult result)
{
AssertValidPingOutput(result.ExitCode, result.StdOutput);
}
}

0 comments on commit 3416074

Please sign in to comment.