Skip to content

Commit

Permalink
Fix PowerShell 7.2 E2E unit test for last change
Browse files Browse the repository at this point in the history
  • Loading branch information
andyleejordan committed Feb 12, 2024
1 parent 021d381 commit 6361eb2
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1091,8 +1091,9 @@ PowerShellVersion details
});

Assert.Empty(completionItems);
LogMessageParams message = Assert.Single(Messages);
Assert.Contains("Exception occurred while running handling completion request", message.Message);
Assert.Collection(Messages,
(message) => Assert.Contains("Error Occurred in TabExpansion2", message.Message),
(message) => Assert.Contains("Exception occurred while running handling completion request", message.Message));
}

[SkippableFact(Skip = "Completion for Expand-SlowArchive is flaky.")]
Expand Down

0 comments on commit 6361eb2

Please sign in to comment.