Skip to content

Commit f82a0c2

Browse files
committed
Remove some unused stuff
1 parent 70383f0 commit f82a0c2

File tree

2 files changed

+2
-15
lines changed

2 files changed

+2
-15
lines changed

Src/FastData.InternalShared/Helpers/TestHelper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
namespace Genbox.FastData.InternalShared.Helpers;
1818

19-
public sealed record ProcessResult(int ExitCode, string StandardOutput, string StandardError, bool TimedOut);
19+
public sealed record ProcessResult(int ExitCode, string StandardOutput, string StandardError);
2020

2121
public static class TestHelper
2222
{
@@ -118,7 +118,7 @@ public static ProcessResult RunProcess(string application, string? args = null,
118118
/* best effort */
119119
}
120120

121-
return new ProcessResult(process.ExitCode, stdOut, stdErr, TimedOut: !exited);
121+
return new ProcessResult(process.ExitCode, stdOut, stdErr);
122122
}
123123

124124
/// <summary>This function is here to help avoid write-fatigue</summary>

Src/FastData/Internal/Helpers/UnsafeHelper.cs

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)