commit 2d894f0a4cfe2e80179ed9f7f1ddbe5dc33088ee
parent cdcf6d6ae45884590256360208f4747bdeb72fb4
Author: JohnMcPMS <johnmcp@microsoft.com>
Date: Wed, 9 Sep 2020 15:02:14 -0700
Fix test with less likely to be real string (#561)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/AppInstallerCLIE2ETests/SearchCommand.cs b/src/AppInstallerCLIE2ETests/SearchCommand.cs
@@ -57,7 +57,7 @@ namespace AppInstallerCLIE2ETests
Assert.True(result.StdOut.Contains("Microsoft.VisualStudioCode"));
// Search Microsoft with exact arg should return none
- result = TestCommon.RunAICLICommand("search", "Microsoft -e");
+ result = TestCommon.RunAICLICommand("search", "f00-b@r-NOT+REAL -e");
Assert.AreEqual(Constants.ErrorCode.ERROR_NO_APPLICATIONS_FOUND, result.ExitCode);
Assert.True(result.StdOut.Contains("No package found matching input criteria."));
}