Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnMcPMS committed Jun 18, 2024
1 parent 7aa9554 commit 009341d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/AppInstallerCLIE2ETests/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public class Constants

public const string AICLIPackageFamilyName = "WinGetDevCLI_8wekyb3d8bbwe";
public const string AICLIPackageName = "WinGetDevCLI";
public const string AICLIPackagePublisherHash = "8wekyb3d8bbwe";

Check failure on line 53 in src/AppInstallerCLIE2ETests/Constants.cs

View workflow job for this annotation

GitHub Actions / Check Spelling

`bbwe` is not a recognized word. (unrecognized-spelling)

Check failure on line 53 in src/AppInstallerCLIE2ETests/Constants.cs

View workflow job for this annotation

GitHub Actions / Check Spelling

`wekyb` is not a recognized word. (unrecognized-spelling)
public const string AICLIAppId = "WinGetDev";

public const string TestPackage = "TëstPackage.msix";
Expand Down
3 changes: 2 additions & 1 deletion src/AppInstallerCLIE2ETests/ListCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ public void ListSelf()
{
var result = TestCommon.RunAICLICommand("list", Constants.AICLIPackageFamilyName);
Assert.AreEqual(Constants.ErrorCode.S_OK, result.ExitCode);
Assert.True(result.StdOut.Contains(Constants.AICLIPackageFamilyName));
Assert.True(result.StdOut.Contains(Constants.AICLIPackageName));
Assert.True(result.StdOut.Contains(Constants.AICLIPackagePublisherHash));
}

/// <summary>
Expand Down

0 comments on commit 009341d

Please sign in to comment.