We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f74f3c3 commit 310ccfeCopy full SHA for 310ccfe
src/DiffEngine.Tests/DiffRunnerTests.cs
@@ -15,11 +15,11 @@ public async Task MaxInstancesToLaunch()
15
{
16
await Task.Delay(500);
17
ProcessCleanup.Refresh();
18
- var result = DiffRunner.Launch(file1, "fake.txt");
+ var result = await DiffRunner.LaunchAsync(file1, "fake.txt");
19
await Task.Delay(300);
20
Assert.Equal(LaunchResult.StartedNewInstance, result);
21
22
- result = DiffRunner.Launch(file2, "fake.txt");
+ result = await DiffRunner.LaunchAsync(file2, "fake.txt");
23
Assert.Equal(LaunchResult.TooManyRunningDiffTools, result);
24
25
DiffRunner.Kill(file1, "fake.txt");
0 commit comments