Skip to content

Commit d3b55e6

Browse files
deleting faulty test
1 parent 72c1722 commit d3b55e6

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/RustAnalyzer.TestAdapter.UnitTests/Common/ProcessExtensionTests.cs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,6 @@ public sealed class ProcessExtensionTests
1212
{
1313
private const int TimeoutSeconds = 15;
1414

15-
[Fact]
16-
public void CanFindAliveParentProcessId()
17-
{
18-
var p1 = Process.Start(("cmd", $"/k timeout {TimeoutSeconds} /NOBREAK").PSI());
19-
20-
var ppids = "timEOut".GetProcessesByName().Select(p => p.GetParentProcessId());
21-
ppids.Should().Contain(p1.Id);
22-
p1.HasExited.Should().BeFalse();
23-
24-
p1.Kill();
25-
}
26-
2715
[Fact]
2816
public async Task CanFindDeadParentProcessIdAsync()
2917
{

0 commit comments

Comments
 (0)