Fix test looking for different exception

This commit is contained in:
Caelan Sayler
2024-01-11 16:24:37 +00:00
parent 35eba174d3
commit 3a7b87c23f

View File

@@ -253,7 +253,7 @@ public class WindowsPackTests
};
var runner = new WindowsPackCommandRunner(logger);
Assert.Throws<UserErrorException>(() => runner.Run(options).GetAwaiterResult());
Assert.Throws<VelopackAppVerificationException>(() => runner.Run(options).GetAwaiterResult());
}
[SkippableFact]